Daniel Brötzmann pushed to branch master at gajim / gajim
Commits: 62c8f6fa by wurstsalat at 2024-07-17T23:04:02+02:00 cq: SecretPasswordStorage: Improve logging for get_password - - - - - 1 changed file: - gajim/common/passwords.py Changes: ===================================== gajim/common/passwords.py ===================================== @@ -84,10 +84,10 @@ def get_password(account_name: str) -> str | None: if not is_keyring_available(): return - log.info('Request password from keyring') - account_jid = app.get_jid_from_account(account_name) + log.info('Request password from keyring for %s', account_jid) + try: # For security reasons remove clear-text password ConfigPasswordStorage.delete_password(account_name) View it on GitLab: https://dev.gajim.org/gajim/gajim/-/commit/62c8f6fa4d74be72294ef69586bd6f95daa4d575 -- View it on GitLab: https://dev.gajim.org/gajim/gajim/-/commit/62c8f6fa4d74be72294ef69586bd6f95daa4d575 You're receiving this email because of your account on dev.gajim.org.
_______________________________________________ Commits mailing list -- commits@gajim.org To unsubscribe send an email to commits-le...@gajim.org