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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user