diff options
| author | George Hazan <ghazan@miranda.im> | 2019-11-01 11:53:51 +0300 |
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2019-11-01 11:53:51 +0300 |
| commit | 2a74ebc02a6fbd049eae161e458fdbf3b1b7a374 (patch) | |
| tree | 2cbe0a3b52a28be86b5f70e664012256164b2c87 /protocols/ICQ-WIM/src | |
| parent | 756fa05b6d7a14441d0f9b8d97dbdb4f9df34918 (diff) | |
fixes #2110 (fake messages should look like send ones, not received)
Diffstat (limited to 'protocols/ICQ-WIM/src')
| -rw-r--r-- | protocols/ICQ-WIM/src/server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/ICQ-WIM/src/server.cpp b/protocols/ICQ-WIM/src/server.cpp index 7558861bc2..44e9a3b376 100644 --- a/protocols/ICQ-WIM/src/server.cpp +++ b/protocols/ICQ-WIM/src/server.cpp @@ -721,7 +721,7 @@ void CIcqProto::OnFileContinue(NETLIBHTTPREQUEST *pReply, AsyncHttpRequest *pOld // Send the same message to myself T2Utf msgText(wszUrl); PROTORECVEVENT recv = {}; - recv.flags = PREF_CREATEREAD; + recv.flags = PREF_CREATEREAD | PREF_SENT; recv.szMessage = msgText; recv.timestamp = time(0); ProtoChainRecvMsg(pTransfer->pfts.hContact, &recv); |
