Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilipp Hörist <forenjunkie@chello.at>2017-05-31 22:42:45 +0300
committerPhilipp Hörist <forenjunkie@chello.at>2017-06-01 20:10:06 +0300
commitf803b544bc57d12bc547ff9515bd072043548fdb (patch)
tree67d03bd2f05ab176ca2d396695c0fd41499d1384 /src
parentcb65cfc5aed9efe05208ebbb7fb2d41fcf7253cc (diff)
Rejoin MUCs unconditionally on SignedInEvent
There is no reason that any Groupchat should be treated as already connected when we sign in.
Diffstat (limited to 'src')
-rw-r--r--src/groupchat_control.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/groupchat_control.py b/src/groupchat_control.py
index 557bc642d..859116e74 100644
--- a/src/groupchat_control.py
+++ b/src/groupchat_control.py
@@ -1378,9 +1378,6 @@ class GroupchatControl(ChatControlBase):
def _nec_signed_in(self, obj):
if obj.conn.name != self.account:
return
- if self.room_jid in gajim.gc_connected[obj.conn.name] and \
- gajim.gc_connected[obj.conn.name][self.room_jid]:
- return
password = gajim.gc_passwords.get(self.room_jid, '')
obj.conn.join_gc(self.nick, self.room_jid, password, rejoin=True)