diff options
author | George Hazan <ghazan@miranda.im> | 2017-08-10 19:14:06 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-08-10 19:14:19 +0300 |
commit | 3d83eeec481c25253e2535e7ce9476e3f046123a (patch) | |
tree | c0cc9f3ffc49a79f510fcff8658fb9baaba99605 /protocols/JabberG/src/jabber_util.cpp | |
parent | e98d9da63ab340e4fdaf2fa2cd4037e4b7f0a498 (diff) |
Jabber:
- more fixes for XEP-115 support;
- obsolete code removed;
Diffstat (limited to 'protocols/JabberG/src/jabber_util.cpp')
-rwxr-xr-x | protocols/JabberG/src/jabber_util.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/protocols/JabberG/src/jabber_util.cpp b/protocols/JabberG/src/jabber_util.cpp index 32f55eb0b1..656958030b 100755 --- a/protocols/JabberG/src/jabber_util.cpp +++ b/protocols/JabberG/src/jabber_util.cpp @@ -551,11 +551,6 @@ wchar_t* CJabberProto::GetClientJID(const wchar_t *jid, wchar_t *dest, size_t de mir_cslock lck(m_csLists);
JABBER_LIST_ITEM *LI = ListGetItemPtr(LIST_ROSTER, jid);
if (LI != NULL) {
- if (LI->arResources.getCount() == 1 && !mir_wstrcmp(LI->arResources[0]->m_tszCapsNode, L"http://talk.google.com/xmpp/bot/caps")) {
- if (p) *p = 0;
- return dest;
- }
-
if (p == NULL) {
pResourceStatus r(LI->getBestResource());
if (r != NULL)
|