diff --git a/src/services/autofill.service.ts b/src/services/autofill.service.ts index d36d4b5c665..74912f26dc4 100644 --- a/src/services/autofill.service.ts +++ b/src/services/autofill.service.ts @@ -231,7 +231,6 @@ export default class AutofillService implements AutofillServiceInterface { if (fromCommand) { cipher = await this.cipherService.getNextCipherForUrl(tab.url); } else { - cipher = await this.cipherService.getLastUsedForUrl(tab.url); const lastLaunchedCipher = await this.cipherService.getLastLaunchedForUrl(tab.url); if (lastLaunchedCipher && Date.now().valueOf() - lastLaunchedCipher.localData?.lastLaunched?.valueOf() < 30000) { cipher = lastLaunchedCipher;