feat: safe mode updates

This commit is contained in:
Anoop M D 2024-08-11 23:14:08 +05:30
parent e4d2e5c1cf
commit 4fcb6f0980
2 changed files with 1174 additions and 1588 deletions

2760
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -88,6 +88,8 @@ function decryptString(str) {
if (algo === ELECTRONSAFESTORAGE_ALGO) {
if (safeStorage && safeStorage.isEncryptionAvailable()) {
return safeStorageDecrypt(encryptedString);
} else {
return '';
}
}