From 76013a044b55eb465365bbc65d501c3a2b38ca83 Mon Sep 17 00:00:00 2001 From: Stephan Erb Date: Mon, 30 Nov 2009 00:34:23 +0100 Subject: [PATCH] Remove a very suspicious line. Maybe I introduce bugs here. I remove this line because it makes no sense to assume that we have joind a groupchat, just because someone request a VCard for a jid which pretends to be from a Groupchat. --- src/common/connection_handlers.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/common/connection_handlers.py b/src/common/connection_handlers.py index 13547358e..00882597e 100644 --- a/src/common/connection_handlers.py +++ b/src/common/connection_handlers.py @@ -1097,9 +1097,6 @@ class ConnectionVcard: j = gajim.get_jid_from_account(self.name) self.awaiting_answers[id_] = (VCARD_ARRIVED, j, groupchat_jid) if groupchat_jid: - room_jid = gajim.get_room_and_nick_from_fjid(groupchat_jid)[0] - if not room_jid in self.room_jids: - self.room_jids.append(room_jid) self.groupchat_jids[id_] = groupchat_jid self.connection.send(iq)