From e93e1cef6e171046fc1bfad7784614cb44e93d58 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger <asterix@lagaule.org> Date: Thu, 18 Aug 2011 20:06:31 +0200 Subject: [PATCH] do not connect to opened disconnected groupchats. Fixes #6943 --- src/roster_window.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/roster_window.py b/src/roster_window.py index df49fd06c3..9d282811c1 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -2086,11 +2086,6 @@ class RosterWindow: if gajim.gc_connected[account][gc_control.room_jid]: gajim.connections[account].send_gc_status( gc_control.nick, gc_control.room_jid, status, txt) - else: - # for some reason, we are not connected to the room even - # if tab is opened, send initial join_gc() - gajim.connections[account].join_gc(gc_control.nick, - gc_control.room_jid, None) if was_invisible and status != 'offline': # We come back from invisible, join bookmarks gajim.interface.auto_join_bookmarks(account) -- GitLab