mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-30 13:03:53 +01:00
Fix null search service checking (#372)
* Do not reset Search Index if SearchService is null * Check lambda exists * Fix Chalk
This commit is contained in:
parent
2750ca7586
commit
2cf5d767b5
@ -296,7 +296,7 @@ export class CipherService implements CipherServiceAbstraction {
|
|||||||
async getAllDecrypted(): Promise<CipherView[]> {
|
async getAllDecrypted(): Promise<CipherView[]> {
|
||||||
if (this.decryptedCipherCache != null) {
|
if (this.decryptedCipherCache != null) {
|
||||||
const userId = await this.userService.getUserId();
|
const userId = await this.userService.getUserId();
|
||||||
if ((this.searchService().indexedEntityId ?? userId) !== userId)
|
if (this.searchService != null && (this.searchService().indexedEntityId ?? userId) !== userId)
|
||||||
{
|
{
|
||||||
await this.searchService().indexCiphers(userId, this.decryptedCipherCache);
|
await this.searchService().indexCiphers(userId, this.decryptedCipherCache);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user