summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-10-14 16:16:07 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-10-14 16:16:07 +0300
commit29af90eb23768e9eb2c29091fefaaa10c78ff8cd (patch)
tree4340315d8f1078db570e0558c44cc12d6647c8c7 /protocols
parentb05ce4acd28f460336dc33d32e5dd503574da29c (diff)
more code cleaning
Diffstat (limited to 'protocols')
-rw-r--r--protocols/JabberG/src/jabber_util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_util.cpp b/protocols/JabberG/src/jabber_util.cpp
index 1f750bc08c..43fa76a620 100644
--- a/protocols/JabberG/src/jabber_util.cpp
+++ b/protocols/JabberG/src/jabber_util.cpp
@@ -378,7 +378,7 @@ void CJabberProto::SendVisibleInvisiblePresence(bool invisible)
if (hContact == 0)
continue;
- uint16_t apparentMode = getWord(hContact, "ApparentMode", 0);
+ uint16_t apparentMode = getWord(hContact, "ApparentMode");
if (invisible && apparentMode == ID_STATUS_OFFLINE)
m_ThreadInfo->send(XmlNode("presence") << XATTR("to", item->jid) << XATTR("type", "invisible"));
else if (!invisible && apparentMode == ID_STATUS_ONLINE)