From: ishmal Date: Fri, 24 Nov 2006 00:17:15 +0000 (+0000) Subject: remove error message from groupChatCreate(). Gtalk should be ok with groups now. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=14512809a59b85fb73f92b6906b5e69012f1e39b;p=inkscape.git remove error message from groupChatCreate(). Gtalk should be ok with groups now. --- diff --git a/src/pedro/pedroxmpp.cpp b/src/pedro/pedroxmpp.cpp index 2e6f74c6a..53bac92d5 100644 --- a/src/pedro/pedroxmpp.cpp +++ b/src/pedro/pedroxmpp.cpp @@ -1120,7 +1120,7 @@ bool XmppClient::processPresence(Element *root) //printf("fromGid:%s fromNick:%s\n", // fromGid.c_str(), fromNick.c_str()); DOMString item_jid = root->getTagAttribute("item", "jid"); - if (item_jid == jid) //Me + if (item_jid == jid || item_jid == to) //Me { if (presence) { @@ -2639,7 +2639,7 @@ bool XmppClient::groupChatCreate(const DOMString &groupJid) { if ((*iter)->getGroupJid() == groupJid) { - error("Group chat '%s' already exists", groupJid.c_str()); + //error("Group chat '%s' already exists", groupJid.c_str()); return false; } }