fix(desktop): log native token decryption failures
This commit is contained in:
parent
a3618c2b22
commit
f15c4db4c8
|
|
@ -6274,6 +6274,10 @@ function _loadNativeTokens(baseUrl: string): NativeTokenSet | null {
|
|||
const plaintext = decryptDesktopSecret(secret)
|
||||
|
||||
if (!plaintext) {
|
||||
rememberLog(
|
||||
`[native-oauth] failed to decrypt stored tokens for ${baseUrl}; keeping stored entry for retry`
|
||||
)
|
||||
|
||||
return null
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue