summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2023-06-13 16:59:07 +0300
committerGeorge Hazan <george.hazan@gmail.com>2023-06-13 16:59:07 +0300
commit4e4e3037567a09543ad1a26d5586d3cb28e3ef83 (patch)
tree5a4ee7922c447cc584b3efb61b343f40acb65d62 /protocols
parentc4019c5bb3ff3524061771920c98d0c789b0c8e3 (diff)
Telegram: broken cyrillic in file descriptions
Diffstat (limited to 'protocols')
-rw-r--r--protocols/Telegram/src/utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Telegram/src/utils.cpp b/protocols/Telegram/src/utils.cpp
index 3415e03c83..7d8984c1fb 100644
--- a/protocols/Telegram/src/utils.cpp
+++ b/protocols/Telegram/src/utils.cpp
@@ -303,7 +303,7 @@ bool CTelegramProto::GetMessageFile(
if (!caption.empty())
pre.descr.a = caption.c_str();
if (pMsg->is_outgoing_)
- pre.dwFlags = PRFF_SENT;
+ pre.dwFlags |= PRFF_SENT;
ProtoChainRecvFile(pUser->hContact, &pre);
return true;
}