1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-08 20:50:28 +00:00

Fix status pending check.

This commit is contained in:
Miles Blackwood
2025-05-02 12:25:28 -04:00
parent f901553dd1
commit b22cde384a

View File

@@ -517,7 +517,7 @@ export class OverlayNotificationsBackground implements OverlayNotificationsBackg
tasks.length > 0 &&
tasks.find(
(task) =>
task.status && SecurityTaskStatus.Pending && cipherIds.indexOf(task.cipherId) > -1,
task.status === SecurityTaskStatus.Pending && cipherIds.indexOf(task.cipherId) > -1,
);
const cipher = ciphers.find((cipher) => cipher.id === securityTask.cipherId);