diff options
author | Sergey Bolhovskoy <elzorfox@ya.ru> | 2015-06-09 18:30:53 +0000 |
---|---|---|
committer | Sergey Bolhovskoy <elzorfox@ya.ru> | 2015-06-09 18:30:53 +0000 |
commit | f869f362e1ba362f5f473bbb032e3f8dc0ff22b8 (patch) | |
tree | 21c77cec875a39ab78f7fee9e1cd6ccd87ed75af /protocols | |
parent | 6bdf52220fbce0b437cb698532c6d3a7a0a94b79 (diff) |
VKontakte: MessageState support (patch by MikalaiR)
git-svn-id: http://svn.miranda-ng.org/main/trunk@14086 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/VKontakte/src/misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/VKontakte/src/misc.cpp b/protocols/VKontakte/src/misc.cpp index 7d497c13fd..eb96f60201 100644 --- a/protocols/VKontakte/src/misc.cpp +++ b/protocols/VKontakte/src/misc.cpp @@ -718,7 +718,7 @@ int CVkProto::OnProcessSrmmEvent(WPARAM, LPARAM lParam) debugLogA("CVkProto::OnProcessSrmmEvent");
MessageWindowEventData *event = (MessageWindowEventData *)lParam;
- if (event->uType == MSG_WINDOW_EVT_OPENING)
+ if (event->uType == MSG_WINDOW_EVT_OPENING && !ServiceExists("MessageState/DummyService"))
SetSrmmReadStatus(event->hContact);
return 0;
|