This commit is contained in:
mathieui 2012-03-07 17:46:11 +01:00
parent 232bc999d8
commit b62940372f

View file

@ -1750,7 +1750,12 @@ class Core(object):
password = args[1] password = args[1]
if tab and tab.joined: # if we are already in the room if tab and tab.joined: # if we are already in the room
self.focus_tab_named(tab.name) self.focus_tab_named(tab.name)
if tab.own_nick == nick:
self.information('/join: Nothing to do.', 'Info')
else:
tab.command_nick(nick)
return return
if room.startswith('@'): if room.startswith('@'):
room = room[1:] room = room[1:]
current_status = self.get_status() current_status = self.get_status()