(chatId: string)
| 246 | // 检查是否为黑名单 |
| 247 | private isBlack(chatId: string): boolean { |
| 248 | return this.db.data.blacklist.includes(chatId); |
| 249 | } |
| 250 | |
| 251 | // 更新统计 |
| 252 | private updateStats(): void { |
| 253 | const enabledChats = Object.values(this.db.data.chats) |
no outgoing calls
no test coverage detected