Fix /join /nick on non-joined tabs

(and correct the display on joined tabs)
This commit is contained in:
mathieui 2016-06-11 13:52:37 +02:00
parent 7072b8f635
commit cf44cf7cde

View file

@ -355,13 +355,15 @@ def command_join(self, args):
if room in self.pending_invites:
del self.pending_invites[room]
tab = self.get_tab_by_name(room, tabs.MucTab)
if tab is not None and tab.joined: # if we are already in the room
if tab is not None:
self.focus_tab_named(tab.name)
if tab.own_nick == nick:
if tab.own_nick == nick and tab.joined:
self.information('/join: Nothing to do.', 'Info')
else:
tab.command_part('')
tab.own_nick = nick
tab.command_cycle('')
tab.join()
return
if room.startswith('@'):