mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 00:03:56 +00:00
dont throw error on none found
This commit is contained in:
@@ -235,7 +235,7 @@ export default class CipherService {
|
||||
async getLastUsedForDomain(domain: string): Promise<any> {
|
||||
const ciphers = await this.getAllDecryptedForDomain(domain);
|
||||
if (ciphers.length === 0) {
|
||||
throw new Error('No ciphers.');
|
||||
return null;
|
||||
}
|
||||
|
||||
const sortedCiphers = ciphers.sort(CipherService.sortCiphersByLastUsed);
|
||||
|
||||
Reference in New Issue
Block a user