Save the bookmark password in the tab in the initial join, for later usage
This commit is contained in:
parent
8f75e10d2f
commit
028e22b480
1 changed files with 2 additions and 1 deletions
|
@ -53,7 +53,8 @@ def _join_initial_rooms(self, bookmarks):
|
|||
tab = self.get_tab_by_name(bm.jid, tabs.MucTab)
|
||||
nick = bm.nick if bm.nick else self.own_nick
|
||||
if not tab:
|
||||
self.open_new_room(bm.jid, nick, focus=False)
|
||||
self.open_new_room(bm.jid, nick, focus=False,
|
||||
password=bm.password)
|
||||
self.initial_joins.append(bm.jid)
|
||||
histo_length = config.get('muc_history_length')
|
||||
if histo_length == -1:
|
||||
|
|
Loading…
Reference in a new issue