Cleanup OIDC pr and run prettier

This commit is contained in:
LukeGus
2025-10-06 09:24:21 -05:00
parent c233b85838
commit 61b0dcc5fb

View File

@@ -94,7 +94,9 @@ class UserCrypto {
DEK.fill(0); DEK.fill(0);
DEK = this.decryptDEK(storedEncryptedDEK, systemKey); DEK = this.decryptDEK(storedEncryptedDEK, systemKey);
} else if (!storedEncryptedDEK) { } else if (!storedEncryptedDEK) {
throw new Error("Failed to store and retrieve user encryption key."); throw new Error(
"Failed to store and retrieve user encryption key.",
);
} }
} finally { } finally {
systemKey.fill(0); systemKey.fill(0);