From 2828e47a243d6601bcce8d46f0bd38dca90955e5 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sun, 8 Jul 2007 11:28:23 +0000 Subject: [PATCH] don't always minimize bookmarked groupchats --- src/gajim.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gajim.py b/src/gajim.py index fee6411b9..802c7a715 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -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]