remove unused param

pull/947/head
Nriver 2025-01-16 14:18:01 +07:00
parent 4b7445be8e
commit 5ea3e67dc3
1 changed files with 1 additions and 1 deletions

@ -12,7 +12,7 @@ function getDataKey(password: any) {
const encryptedDataKey = getOption("encryptedDataKey"); const encryptedDataKey = getOption("encryptedDataKey");
const decryptedDataKey = decryptService.decrypt(passwordDerivedKey, encryptedDataKey, 16); const decryptedDataKey = decryptService.decrypt(passwordDerivedKey, encryptedDataKey);
return decryptedDataKey; return decryptedDataKey;
} catch (e: any) { } catch (e: any) {