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

empty password is saved as '', not None (gnomeKeyring crashes when we set None). fixes #2748

parent 90cda757
No related branches found
No related tags found
No related merge requests found
......@@ -1527,7 +1527,7 @@ class AccountModificationWindow:
if config['savepass']:
passwords.save_password(name, config['password'])
else:
passwords.save_password(name, None)
passwords.save_password(name, '')
# refresh accounts window
if gajim.interface.instances.has_key('accounts'):
gajim.interface.instances['accounts'].init_accounts()
......
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