diff --git a/libs/common/src/platform/services/system.service.ts b/libs/common/src/platform/services/system.service.ts index 90a382e5abc..1073ab4b9c0 100644 --- a/libs/common/src/platform/services/system.service.ts +++ b/libs/common/src/platform/services/system.service.ts @@ -39,8 +39,8 @@ export class SystemService implements SystemServiceAbstraction { } // User has set a PIN, with ask for master password on restart, to protect their vault - const decryptedPinProtected = await this.stateService.getDecryptedPinProtected(); - if (decryptedPinProtected != null) { + const ephemeralPin = await this.stateService.getUserSymKeyPinEphemeral(); + if (ephemeralPin != null) { return; }