diff options
author | George Hazan <george.hazan@gmail.com> | 2016-06-22 15:38:30 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-06-22 15:38:30 +0000 |
commit | 937c816460e09bf4da2d4fbf6ca5c4b18346ee19 (patch) | |
tree | faf03f55fc08cfa08a281b858d2cdd75d5058dfd /protocols/JabberG/src/jabber_iqid.cpp | |
parent | 296c88217ab4b2872d8fdada5e8c309dcb50bf24 (diff) |
- fix a bug with roster push processing in Jabber;
- cosmetic fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@17016 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_iqid.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_iqid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_iqid.cpp b/protocols/JabberG/src/jabber_iqid.cpp index fdba87e6cf..32bf643dac 100644 --- a/protocols/JabberG/src/jabber_iqid.cpp +++ b/protocols/JabberG/src/jabber_iqid.cpp @@ -402,7 +402,7 @@ void CJabberProto::OnIqResultGetRoster(HXML iqNode, CJabberIqInfo *pInfo) MCONTACT hContact = HContactFromJID(jid);
if (hContact == NULL) // Received roster has a new JID.
- hContact = DBCreateContact(jid, nick, false, false); // Add the jid (with empty resource) to Miranda contact list.
+ hContact = DBCreateContact(jid, nick, false, true); // Add the jid (with empty resource) to Miranda contact list.
JABBER_LIST_ITEM *item = ListAdd(LIST_ROSTER, jid, hContact);
item->subscription = sub;
|