From 4ebddba95d1bf0a01081cfda553c9f0c654be0ac Mon Sep 17 00:00:00 2001 From: Wizou <11647984+wiz0u@users.noreply.github.com> Date: Wed, 9 Feb 2022 22:58:26 +0100 Subject: [PATCH] Channels_GetAllParticipants: restore original name --- src/Client.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.cs b/src/Client.cs index c66c0dd..985f059 100644 --- a/src/Client.cs +++ b/src/Client.cs @@ -1634,7 +1634,7 @@ namespace WTelegram /// second (and further) letters used to search for in participants names /// Field count indicates the total count of members. Field participants contains those that were successfully fetched /// ⚠ This method can take a few minutes to complete on big broadcast channels. It likely won't be able to obtain the full total count of members - public async Task Channels_GetAllParticipantsSlow(InputChannelBase channel, bool includeKickBan = false, string alphabet1 = "АБCДЕЄЖФГHИІJКЛМНОПQРСТУВWХЦЧШЩЫЮЯЗ", string alphabet2 = "АCЕHИJЛМНОРСТУВWЫ") + public async Task Channels_GetAllParticipants(InputChannelBase channel, bool includeKickBan = false, string alphabet1 = "АБCДЕЄЖФГHИІJКЛМНОПQРСТУВWХЦЧШЩЫЮЯЗ", string alphabet2 = "АCЕHИJЛМНОРСТУВWЫ") { alphabet2 ??= alphabet1; var result = new Channels_ChannelParticipants { chats = new(), users = new() };