(chatId: any)
| 734 | const me = await safeGetMe(client); |
| 735 | if (!me) return false; |
| 736 | if (this.getChatKind(chatId) === 'chat') { |
| 737 | const participants = await this.getBasicGroupParticipants(client, chatId); |
| 738 | if (!participants) { |
| 739 | return false; |
| 740 | } |
| 741 | |
| 742 | const meParticipant = participants.find((p: any) => Number(p?.userId) === Number((me as any).id)); |
no outgoing calls
no test coverage detected