removed an uneeded line of code

This commit is contained in:
Addison Beck 2020-10-13 15:33:28 -04:00
parent fdfb6fb152
commit 3d903bbf0c
1 changed files with 0 additions and 1 deletions

View File

@ -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;