diff options
author | George Hazan <george.hazan@gmail.com> | 2024-09-17 18:18:23 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-09-17 18:18:23 +0300 |
commit | 1132005a31f35d7cde131f53b5de85ca754a84fc (patch) | |
tree | 35d4692b00da2fc959ef21d9a8ddf5e8cdc5d404 /protocols/Telegram | |
parent | 547f009bb123e449d65348d77ea3b96ea34f6a91 (diff) |
fixes #4673 (Telegram: топик не обновляется на лету и событие смены топика не отображается в журнале)
Diffstat (limited to 'protocols/Telegram')
-rw-r--r-- | protocols/Telegram/src/utils.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/Telegram/src/utils.cpp b/protocols/Telegram/src/utils.cpp index 22055f305a..fa38d6cdc9 100644 --- a/protocols/Telegram/src/utils.cpp +++ b/protocols/Telegram/src/utils.cpp @@ -604,6 +604,8 @@ CMStringA CTelegramProto::GetMessageText(TG_USER *pUser, const TD::message *pMsg Chat_ChangeSessionName(pUser->m_si, Utf2T(pDoc->title_.c_str()));
else
setUString(pUser->hContact, "Nick", pDoc->title_.c_str());
+
+ ret.AppendFormat("%s %s", TranslateU("Chat name was changed to"), pDoc->title_.c_str());
}
break;
|