notification fixes

This commit is contained in:
2024-09-23 20:05:27 +03:00
parent 81959f6883
commit cf9bea2954
4 changed files with 16 additions and 10 deletions

View File

@@ -215,6 +215,8 @@ export const decryptSingle = async ({ data64, secretKeyObject, skipDecodeBase64
// New format: nonce is included in the message (first 32 characters)
nonceBase64 = decodeForNumber.slice(10, 42); // First 32 characters for the nonce
encryptedDataBase64 = decodeForNumber.slice(42); // The remaining part is the encrypted data
}
// Convert Base64 strings to Uint8Array