diff options
author | George Hazan <ghazan@miranda.im> | 2017-08-30 16:32:28 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-08-30 16:32:28 +0300 |
commit | 26d5baa8990499dee021efb1463b186c36a6f656 (patch) | |
tree | d74b9342f2e40eae358a92ff31893aa4fb8a0b6b /protocols/JabberG/src | |
parent | 2c1b14cf49f7c2926954685930a51d3d06d0850a (diff) |
attempt to fix problems with group chat presences
Diffstat (limited to 'protocols/JabberG/src')
-rw-r--r-- | protocols/JabberG/src/jabber_groupchat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_groupchat.cpp b/protocols/JabberG/src/jabber_groupchat.cpp index 47baaa5565..00904b34ea 100644 --- a/protocols/JabberG/src/jabber_groupchat.cpp +++ b/protocols/JabberG/src/jabber_groupchat.cpp @@ -926,7 +926,7 @@ void CJabberProto::GroupchatProcessPresence(HXML node) if (r && bRoleChanged) GcLogShowInformation(item, r, INFO_ROLE);
// update clist status
- MCONTACT hContact = HContactFromJID(from);
+ MCONTACT hContact = HContactFromJID(from, false);
if (hContact != 0)
setWord(hContact, "Status", status);
|