1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

Fix log service not binding this (#11551)

This commit is contained in:
Oscar Hinton
2024-10-15 18:21:08 +02:00
committed by GitHub
parent e5ca6fd460
commit 55ee33206f
5 changed files with 5 additions and 5 deletions

View File

@@ -858,7 +858,7 @@ export class ServiceContainer {
}
if (!supported) {
this.sdkService.failedToInitialize().catch(this.logService.error);
this.sdkService.failedToInitialize().catch((e) => this.logService.error(e));
}
}
}