summaryrefslogtreecommitdiff
path: root/plugins/TabSRMM/src
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2017-08-15 21:09:04 +0300
committerGeorge Hazan <ghazan@miranda.im>2017-08-15 21:09:04 +0300
commitf860bd6b53d93afdd2b0c19389deb0b012cf34a1 (patch)
treea7e6f5534aa8a4dfcdc45b163b9a4613c18c105d /plugins/TabSRMM/src
parent0e0be3d020184b1e0b9d9690841e84d83ca20bfc (diff)
more fixes for #822
Diffstat (limited to 'plugins/TabSRMM/src')
-rw-r--r--plugins/TabSRMM/src/msglog.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/msglog.cpp b/plugins/TabSRMM/src/msglog.cpp
index 90f6b67c4a..5fb3b975f9 100644
--- a/plugins/TabSRMM/src/msglog.cpp
+++ b/plugins/TabSRMM/src/msglog.cpp
@@ -1236,8 +1236,10 @@ void CTabBaseDlg::StreamInEvents(MEVENT hDbEventFirst, int count, int fAppend, D
if (dbei_s != nullptr && hDbEventFirst == 0) {
evData.cbSize = sizeof(evData);
event.iType = IEE_LOG_MEM_EVENTS;
- if (dbei_s->flags & DBEF_SENT)
+ if (dbei_s->flags & DBEF_SENT) {
evData.dwFlags = IEEDF_SENT;
+ evData.bIsMe = true;
+ }
else {
evData.dwFlags = IEEDF_UNICODE_NICK;
evData.ptszNick = pcli->pfnGetContactDisplayName(m_hContact, 0);