Fixes #2271
This commit is contained in:
parent
fde8a8a1c9
commit
0cb9a5a61f
1 changed files with 6 additions and 1 deletions
|
@ -1378,7 +1378,12 @@ class Core(object):
|
|||
else:
|
||||
tab.own_nick = nick
|
||||
tab.users = []
|
||||
self.enable_private_tabs(room)
|
||||
if tab and tab.joined:
|
||||
self.enable_private_tabs(room)
|
||||
tab.state = "normal"
|
||||
if tab == self.current_tab():
|
||||
tab.refresh()
|
||||
self.doupdate()
|
||||
|
||||
def get_bookmark_nickname(self, room_name):
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue