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