diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-23 20:48:42 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-23 20:48:42 +0000 |
commit | 7e7bb5ea2b5c5f72de0fff129a22c93f90afebd9 (patch) | |
tree | faff0eca4a692308b1bbd04452fdd645624dadd3 /plugins | |
parent | ecbc38dec485f26b80889f104c68636f67a1251f (diff) |
fix for mc avatars
git-svn-id: http://svn.miranda-ng.org/main/trunk@9930 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/AVS/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/AVS/src/main.cpp b/plugins/AVS/src/main.cpp index 216d9799c5..5bda47f423 100644 --- a/plugins/AVS/src/main.cpp +++ b/plugins/AVS/src/main.cpp @@ -99,7 +99,7 @@ static TCHAR* getJGMailID(char *szProto) static int ProtocolAck(WPARAM wParam, LPARAM lParam)
{
ACKDATA *ack = (ACKDATA*)lParam;
- if (ack != NULL && ack->type == ACKTYPE_AVATAR && db_mc_isMeta(ack->hContact)) {
+ if (ack != NULL && ack->type == ACKTYPE_AVATAR && !db_mc_isMeta(ack->hContact)) {
if (ack->result == ACKRESULT_SUCCESS) {
if (ack->hProcess == NULL)
ProcessAvatarInfo(ack->hContact, GAIR_NOAVATAR, NULL, ack->szModule);
|