Skip to content
Snippets Groups Projects
Commit 2828e47a authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

don't always minimize bookmarked groupchats

parent 60a77cd5
No related branches found
No related tags found
No related merge requests found
......@@ -1333,9 +1333,10 @@ class Interface:
# join autojoinable rooms
for bm in bms:
minimize = bm['minimize'] in ('1', 'true')
if bm['autojoin'] in ('1', 'true'):
self.roster.join_gc_room(account, bm['jid'], bm['nick'],
bm['password'], minimize = bm['minimize'])
bm['password'], minimize = minimize)
def handle_event_file_send_error(self, account, array):
jid = array[0]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment