(chatId: any)
| 472 | |
| 473 | await Promise.all( |
| 474 | ordered.map((group) => |
| 475 | limit(async () => { |
| 476 | if (found.participant) return; |
| 477 | if (excludeId && Number(group.id) === excludeId) return; |
| 478 | try { |
| 479 | if (group.kind === "channel") { |
| 480 | const channel = await resolveChannelInput(client, group); |
| 481 | const res: any = await client.invoke( |
| 482 | new Api.channels.GetParticipant({ |
| 483 | channel: channel as any, |
no outgoing calls
no test coverage detected