Dev 1.8.0 #399

Merged
LukeGus merged 42 commits from dev-1.8.0 into main 2025-10-15 03:50:34 +00:00
Showing only changes of commit c233b85838 - Show all commits
+2 -1
View File
@@ -163,9 +163,10 @@ class UserCrypto {
async authenticateOIDCUser(userId: string): Promise<boolean> {
try {
const kekSalt = await this.getKEKSalt(userId);
const encryptedDEK = await this.getEncryptedDEK(userId);
if (!encryptedDEK) {
if (!kekSalt || !encryptedDEK) {
await this.setupOIDCUserEncryption(userId);
return true;
}