From 3d903bbf0cd6e2694f907b105fef73f015e2313c Mon Sep 17 00:00:00 2001 From: Addison Beck Date: Tue, 13 Oct 2020 15:33:28 -0400 Subject: [PATCH] removed an uneeded line of code --- src/services/autofill.service.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/services/autofill.service.ts b/src/services/autofill.service.ts index d36d4b5c66..74912f26dc 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;