From 4bf8e7a50e7168ec0418301d2c10f748f24dd8ad Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 19 Feb 2020 21:17:09 +0300 Subject: fixed #2221 (Jabber: cannot invite user to conference) --- protocols/JabberG/src/jabber_thread.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'protocols/JabberG/src') diff --git a/protocols/JabberG/src/jabber_thread.cpp b/protocols/JabberG/src/jabber_thread.cpp index aaa9e1b5af..51ef853e94 100755 --- a/protocols/JabberG/src/jabber_thread.cpp +++ b/protocols/JabberG/src/jabber_thread.cpp @@ -1320,7 +1320,7 @@ void CJabberProto::OnProcessMessage(const TiXmlElement *node, ThreadData *info) if (inviteReason == nullptr) inviteReason = szMessage; if (!m_bIgnoreMUCInvites) - GroupchatProcessInvite(XmlGetAttr(inviteNode, "from"), from, inviteReason, XmlGetChildText(xNode, "password")); + GroupchatProcessInvite(from, XmlGetAttr(inviteNode, "from"), inviteReason, XmlGetChildText(xNode, "password")); return; } } @@ -1351,7 +1351,7 @@ void CJabberProto::OnProcessMessage(const TiXmlElement *node, ThreadData *info) if (!inviteReason) inviteReason = szMessage; if (!m_bIgnoreMUCInvites) - GroupchatProcessInvite(XmlGetAttr(xNode, "jid"), from, inviteReason, nullptr); + GroupchatProcessInvite(from, XmlGetAttr(xNode, "jid"), inviteReason, nullptr); return; } } -- cgit v1.2.3