Fix regression from !85
Disabled accounts are not in gajim.connections, which leads to a key error.
This commit is contained in:
parent
9be4bb3ad8
commit
0eb2433c17
|
@ -1716,7 +1716,8 @@ class AccountsWindow:
|
||||||
self.remove_button.set_sensitive(True)
|
self.remove_button.set_sensitive(True)
|
||||||
self.rename_button.set_sensitive(True)
|
self.rename_button.set_sensitive(True)
|
||||||
|
|
||||||
if account != gajim.ZEROCONF_ACC_NAME:
|
if (account != gajim.ZEROCONF_ACC_NAME and
|
||||||
|
account in gajim.connections):
|
||||||
self.change_password_button.set_sensitive(
|
self.change_password_button.set_sensitive(
|
||||||
gajim.connections[account].register_supported)
|
gajim.connections[account].register_supported)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue