Fix first start with no accounts
This commit is contained in:
parent
714d70cb23
commit
59cfddc3ca
1 changed files with 2 additions and 2 deletions
|
@ -356,10 +356,10 @@ class GajimApplication(Gtk.Application):
|
||||||
self.add_action(act)
|
self.add_action(act)
|
||||||
|
|
||||||
accounts_list = sorted(app.config.get_per('accounts'))
|
accounts_list = sorted(app.config.get_per('accounts'))
|
||||||
if not accounts_list:
|
|
||||||
return
|
|
||||||
if 'Local' in accounts_list:
|
if 'Local' in accounts_list:
|
||||||
accounts_list.remove('Local')
|
accounts_list.remove('Local')
|
||||||
|
if not accounts_list:
|
||||||
|
return
|
||||||
if len(accounts_list) > 1:
|
if len(accounts_list) > 1:
|
||||||
for acc in accounts_list:
|
for acc in accounts_list:
|
||||||
self.add_account_actions(acc)
|
self.add_account_actions(acc)
|
||||||
|
|
Loading…
Add table
Reference in a new issue