diff options
Diffstat (limited to 'protocols/JabberG')
-rwxr-xr-x | protocols/JabberG/src/jabber_thread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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;
}
}
|