fix(update,security): add release notes in updater and bump to 2.2.1
All checks were successful
Desktop CI / tests (push) Successful in 13s
Desktop Release / release (push) Successful in 3m30s

This commit is contained in:
2026-02-15 23:51:44 +03:00
parent e0628b1792
commit 4b3347a069
4 changed files with 42 additions and 12 deletions

View File

@@ -91,8 +91,8 @@ def save_token(token, token_file, app_data_dir, expires_in=0):
try:
stored_token = _encrypt_token(token)
encrypted = True
except Exception:
pass
except Exception as exc:
raise RuntimeError("Failed to securely store token with DPAPI.") from exc
data = {
"token": stored_token,