mirror of
https://github.com/usebruno/bruno.git
synced 2025-06-28 07:51:21 +02:00
feat: safe mode updates
This commit is contained in:
parent
6d01c46d50
commit
969fe8e3cf
@ -86,7 +86,9 @@ function decryptString(str) {
|
||||
}
|
||||
|
||||
if (algo === ELECTRONSAFESTORAGE_ALGO) {
|
||||
return safeStorageDecrypt(encryptedString);
|
||||
if (safeStorage && safeStorage.isEncryptionAvailable()) {
|
||||
return safeStorageDecrypt(encryptedString);
|
||||
}
|
||||
}
|
||||
|
||||
if (algo === AES256_ALGO) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user