Daniel Brötzmann pushed to branch master at gajim / gajim
Commits:
a845c40e by wurstsalat at 2025-10-24T22:22:08+02:00
fix: Password storage: Catch more exceptions when trying to delete password
Fixes #12506
- - - - -
1 changed file:
- gajim/common/passwords.py
Changes:
=====================================
gajim/common/passwords.py
=====================================
@@ -131,6 +131,8 @@ def delete_password(account_name: str) -> None:
_interface.backend.delete_password('gajim', account_name)
except keyring_errors:
pass
+ except Exception:
+ pass
try:
return _interface.backend.delete_password('gajim', account_jid)
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/a845c40e13af5845de4d893b4548f2767dc6ccbd
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/a845c40e13af5845de4d893b4548f2767dc6ccbd
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]