don't always minimize bookmarked groupchats

This commit is contained in:
Yann Leboulanger 2007-07-08 11:28:23 +00:00
parent 60a77cd5a1
commit 2828e47a24
1 changed files with 2 additions and 1 deletions

View File

@ -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]