diff options
author | George Hazan <george.hazan@gmail.com> | 2016-06-22 16:42:00 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-06-22 16:42:00 +0000 |
commit | 5ee4c727a1a585172eb8973337fb28c8e88098cf (patch) | |
tree | 76e52c1d93790db4c9276bdc7b3accc55321b9f6 /protocols/JabberG/src/jabber_iq_handlers.cpp | |
parent | 937c816460e09bf4da2d4fbf6ca5c4b18346ee19 (diff) |
another implementation of roster items' sorting
git-svn-id: http://svn.miranda-ng.org/main/trunk@17017 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_iq_handlers.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_iq_handlers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_iq_handlers.cpp b/protocols/JabberG/src/jabber_iq_handlers.cpp index 40e3ac164e..13e3cc5cca 100644 --- a/protocols/JabberG/src/jabber_iq_handlers.cpp +++ b/protocols/JabberG/src/jabber_iq_handlers.cpp @@ -254,7 +254,7 @@ BOOL CJabberProto::OnRosterPushRequest(HXML, CJabberIqInfo *pInfo) if (nick != NULL) {
MCONTACT hContact = HContactFromJID(jid, false);
if (hContact == NULL)
- hContact = DBCreateContact(jid, nick, false, true);
+ hContact = DBCreateContact(jid, nick, false, false);
else
setTString(hContact, "jid", jid);
|