1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-07 04:03:29 +00:00

filter out deleted ciphers for security tasks

This commit is contained in:
Jonathan Prusik
2025-06-03 13:57:56 -04:00
parent a05f0f6a6f
commit 6cb3eef26f

View File

@@ -543,6 +543,8 @@ export class OverlayNotificationsBackground implements OverlayNotificationsBackg
if (
// exit early if info was found already
taskInfo ||
// exit early if the cipher was deleted
cipher.deletedDate ||
// exit early if the entered login info doesn't match an existing cipher
modifyLoginData.username !== cipher.login.username ||
modifyLoginData.password !== cipher.login.password