From 93286531b37b67dbbad71509e429ba2a1a9158e9 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 24 Jul 2018 13:39:20 +0300 Subject: Jabber: "to" verification removed because it doesn't solve problems with carbons anyway --- protocols/JabberG/src/jabber_thread.cpp | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/protocols/JabberG/src/jabber_thread.cpp b/protocols/JabberG/src/jabber_thread.cpp index de4f25f910..b1b654fffb 100755 --- a/protocols/JabberG/src/jabber_thread.cpp +++ b/protocols/JabberG/src/jabber_thread.cpp @@ -1068,16 +1068,9 @@ void CJabberProto::OnProcessMessage(HXML node, ThreadData *info) if (!XmlGetName(node) || mir_wstrcmp(XmlGetName(node), L"message")) return; - const wchar_t *from, *to, *type = XmlGetAttrValue(node, L"type"); + const wchar_t *from, *type = XmlGetAttrValue(node, L"type"); if ((from = XmlGetAttrValue(node, L"from")) == nullptr) return; - if ((to = XmlGetAttrValue(node, L"to")) == nullptr) - return; - - if (mir_wstrcmpi(to, m_szJabberJID) && mir_wstrcmpi(to, info->fullJID)) { - debugLogA("message sent to wrong addressee: %S", to); - return; - } const wchar_t *idStr = XmlGetAttrValue(node, L"id"); pResourceStatus pFromResource(ResourceInfoFromJID(from)); @@ -2178,5 +2171,4 @@ int ThreadData::send_no_strm_mgmt(HXML node) xmlFree(str); return result; - -} \ No newline at end of file +} -- cgit v1.2.3