()
| 823 | }); |
| 824 | } |
| 825 | } catch (e) { |
| 826 | lines.push("\n无法解析账户信息。"); |
| 827 | } |
| 828 | } |
| 829 | |
| 830 | await msg.edit({ text: lines.join("\n"), parseMode: "html" }); |
| 831 | } catch (error: any) { |
| 832 | await msg.edit({ text: `状态获取失败: ${htmlEscape(error?.message || error)}`, parseMode: "html" }); |
| 833 | } |
| 834 | } |
| 835 | |
| 836 | private mapArch(nodeArch: string): string | null { |
| 837 | const map: Record<string, string> = { |
no outgoing calls
no test coverage detected