1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 05:43:41 +00:00

Returning the loop checking a cipher's uris to prevent dupes (#7488)

This commit is contained in:
Tom
2024-01-11 10:17:51 -05:00
committed by GitHub
parent f8d72f0231
commit 7112f44375

View File

@@ -67,7 +67,10 @@ export class InactiveTwoFactorReportComponent extends CipherReportComponent impl
if (this.services.get(domain) != null) {
docs.set(id, this.services.get(domain));
}
// If the uri is in the 2fa list. Add the cipher to the inactive
// collection. No need to check any additional uris for the cipher.
inactive2faCiphers.push(ciph);
return;
}
}
}