diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-20 14:49:26 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-20 14:49:26 +0000 |
commit | 79e46207a78f216b054ece49994e7b260c4e4511 (patch) | |
tree | eb0e044c81cf954d0e4b30ee248298be1ee84465 /protocols/IcqOscarJ/src/directpackets.cpp | |
parent | 904d3a5f8dccf98c3f99783d1e92f607cb9c7401 (diff) |
ICQ: Miranda identifies itself as v.11, allowing pure utf8 packets exchange
git-svn-id: http://svn.miranda-ng.org/main/trunk@7790 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IcqOscarJ/src/directpackets.cpp')
-rw-r--r-- | protocols/IcqOscarJ/src/directpackets.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/IcqOscarJ/src/directpackets.cpp b/protocols/IcqOscarJ/src/directpackets.cpp index cf9f698500..d4eb61dbc2 100644 --- a/protocols/IcqOscarJ/src/directpackets.cpp +++ b/protocols/IcqOscarJ/src/directpackets.cpp @@ -81,7 +81,7 @@ DWORD CIcqProto::icq_sendGetAwayMsgDirect(HANDLE hContact, int type) DWORD dwCookie;
cookie_message_data *pCookieData;
- if (getWord(hContact, "Version", 0) == 9)
+ if (getWord(hContact, "Version", 0) >= 9)
return 0; // v9 DC protocol does not support this message
pCookieData = CreateMessageCookie(MTYPE_AUTOAWAY, (BYTE)type);
|