diff --git a/libs/common/src/vault/services/cipher.service.ts b/libs/common/src/vault/services/cipher.service.ts index ba986dcc763..90e90004e48 100644 --- a/libs/common/src/vault/services/cipher.service.ts +++ b/libs/common/src/vault/services/cipher.service.ts @@ -604,19 +604,13 @@ export class CipherService implements CipherServiceAbstraction { includeOtherTypes?: CipherType[], defaultMatch: UriMatchStrategySetting = null, ): Promise { - return await firstValueFrom( - this.cipherViews$(userId).pipe( - filter((c) => c != null), - switchMap( - async (ciphers) => - await this.filterCiphersForUrl( - ciphers, - url, - includeOtherTypes, - defaultMatch, - ), - ), - ), + const ciphers = await this.getAllDecrypted(userId); + + return await this.filterCiphersForUrl( + ciphers, + url, + includeOtherTypes, + defaultMatch, ); }