diff options
author | George Hazan <george.hazan@gmail.com> | 2024-12-03 19:58:52 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-12-03 19:58:52 +0300 |
commit | 3bed2aeadb7da5070d032f05591a5e4887bdb9bf (patch) | |
tree | 1a81da56be090614c07660f3ffad6cc464dbe0d9 /protocols/JabberG/src/jabber_thread.cpp | |
parent | 550c9c86a95b3bc9f98e11a99e376e0a6ec0bf82 (diff) |
code cleaning
Diffstat (limited to 'protocols/JabberG/src/jabber_thread.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_thread.cpp b/protocols/JabberG/src/jabber_thread.cpp index c283904cde..753b2cadc8 100644 --- a/protocols/JabberG/src/jabber_thread.cpp +++ b/protocols/JabberG/src/jabber_thread.cpp @@ -717,7 +717,7 @@ void CJabberProto::OnProcessFeatures(const TiXmlElement *node, ThreadData *info) if (auto *sm = XmlGetChildByTag(c, "sm", "xmlns", JABBER_FEAT_SM))
m_StrmMgmt.CheckStreamFeatures(sm);
- if (auto *bind = XmlGetChildByTag(c, "sm", "xmlns", "urn:xmpp:bind:0")) {
+ if (auto *bind = XmlGetChildByTag(c, "bind", "xmlns", "urn:xmpp:bind:0")) {
// dunno why we need to handle that
}
}
|