diff options
author | George Hazan <george.hazan@gmail.com> | 2023-12-29 19:15:32 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-12-29 19:15:32 +0300 |
commit | 88c3f01f12fc89d2b4572c24d0e450c7d16fc5a1 (patch) | |
tree | aff8c1d17366ca1f792b13543d07a9362e345b8d /protocols | |
parent | be0f5a4f79d84c83d5a835a0753a604b06ee6d0a (diff) |
fixes #4080 (TabSRMM: непонятные проблемы с кодировкой после Load Server History)
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/ICQ-WIM/src/server.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/ICQ-WIM/src/server.cpp b/protocols/ICQ-WIM/src/server.cpp index d12c337ce1..36887220fa 100644 --- a/protocols/ICQ-WIM/src/server.cpp +++ b/protocols/ICQ-WIM/src/server.cpp @@ -623,6 +623,7 @@ void CIcqProto::ParseMessage(MCONTACT hContact, __int64 &lastMsgId, const JSONNo DBEVENTINFO dbei = {};
dbei.szModule = m_szModuleName;
dbei.timestamp = iMsgTime;
+ dbei.flags = DBEF_UTF;
if (bIsOutgoing)
dbei.flags |= DBEF_SENT;
if (bCreateRead)
|