diff options
author | George Hazan <george.hazan@gmail.com> | 2024-12-11 21:43:38 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-12-11 21:43:38 +0300 |
commit | 583ab0796b113df6474cfce7416084215cb850e7 (patch) | |
tree | 2eca98f32f43e332e5b8a86b4993987a2bac4fb9 /protocols/Telegram/src/server.cpp | |
parent | e2d3cecbafe066218273f980cdd1e05f5a3f8f1a (diff) |
Telegram: messages from bots are still ignored
Diffstat (limited to 'protocols/Telegram/src/server.cpp')
-rw-r--r-- | protocols/Telegram/src/server.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/Telegram/src/server.cpp b/protocols/Telegram/src/server.cpp index 952e076940..3afc2afad1 100644 --- a/protocols/Telegram/src/server.cpp +++ b/protocols/Telegram/src/server.cpp @@ -1230,6 +1230,7 @@ void CTelegramProto::ProcessUser(TD::updateUser *pObj) case TD::userTypeDeleted::ID:
return;
+ case TD::userTypeBot::ID:
case TD::userTypeRegular::ID:
auto *pu = AddFakeUser(pUser->id_, false);
if (pu->hContact != INVALID_CONTACT_ID)
|