mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 23:33:31 +00:00
Update jslib (PR 185)
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: f44e99d74d...0a73b6fca8
@@ -155,7 +155,7 @@ export default class MainBackground {
|
||||
this.i18nService = new I18nService(BrowserApi.getUILanguage(window));
|
||||
this.cryptoFunctionService = new WebCryptoFunctionService(window, this.platformUtilsService);
|
||||
this.cryptoService = new CryptoService(this.storageService, this.secureStorageService,
|
||||
this.cryptoFunctionService);
|
||||
this.cryptoFunctionService, this.platformUtilsService);
|
||||
this.tokenService = new TokenService(this.storageService);
|
||||
this.appIdService = new AppIdService(this.storageService);
|
||||
this.apiService = new ApiService(this.tokenService, this.platformUtilsService,
|
||||
|
||||
@@ -305,6 +305,10 @@ export default class BrowserPlatformUtilsService implements PlatformUtilsService
|
||||
return null;
|
||||
}
|
||||
|
||||
supportsSecureStorage(): boolean {
|
||||
return false;
|
||||
}
|
||||
|
||||
private isSafariExtension(): boolean {
|
||||
return (window as any).safariAppExtension === true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user