diff options
author | George Hazan <ghazan@miranda.im> | 2017-08-15 18:09:25 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-08-15 18:09:25 +0300 |
commit | 0e0be3d020184b1e0b9d9690841e84d83ca20bfc (patch) | |
tree | 111067e2b652eb209f282045bb3bfc46c9db8fd5 | |
parent | 3342dd204597c09bb726dfc1d7a0acbfd2fd5d8f (diff) |
fixes #822 (Incorrect display of undelivered messages)
-rw-r--r-- | plugins/TabSRMM/src/sendqueue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/sendqueue.cpp b/plugins/TabSRMM/src/sendqueue.cpp index 4292b89b9c..6d71c3e1d1 100644 --- a/plugins/TabSRMM/src/sendqueue.cpp +++ b/plugins/TabSRMM/src/sendqueue.cpp @@ -357,7 +357,7 @@ void SendQueue::logError(CTabBaseDlg *dat, int iSendJobIndex, const wchar_t *szE dbei.pBlob = nullptr; } - dbei.flags = DBEF_UTF; + dbei.flags = DBEF_SENT | DBEF_UTF; dbei.cbBlob = (int)iMsgLen; dbei.timestamp = time(nullptr); dbei.szModule = (char *)szErrMsg; |