From 6cb3eef26f63d788161d4eaf224f18d4a6c9ddeb Mon Sep 17 00:00:00 2001 From: Jonathan Prusik Date: Tue, 3 Jun 2025 13:57:56 -0400 Subject: [PATCH] filter out deleted ciphers for security tasks --- .../src/autofill/background/overlay-notifications.background.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/browser/src/autofill/background/overlay-notifications.background.ts b/apps/browser/src/autofill/background/overlay-notifications.background.ts index daa83b37568..b3d6f3e1bf3 100644 --- a/apps/browser/src/autofill/background/overlay-notifications.background.ts +++ b/apps/browser/src/autofill/background/overlay-notifications.background.ts @@ -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