From 14181dc34d58155cbbef303c5ab3c81bb1b38c14 Mon Sep 17 00:00:00 2001 From: Hinton Date: Fri, 20 Nov 2020 14:34:23 +0100 Subject: [PATCH] Fix jslib update --- src/app/services.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/services.module.ts b/src/app/services.module.ts index bc59bd8655..4a91be86b4 100644 --- a/src/app/services.module.ts +++ b/src/app/services.module.ts @@ -96,7 +96,7 @@ const platformUtilsService = new ElectronPlatformUtilsService(i18nService, messa const secureStorageService: StorageServiceAbstraction = new ElectronRendererSecureStorageService(); const cryptoFunctionService: CryptoFunctionServiceAbstraction = new WebCryptoFunctionService(window, platformUtilsService); -const cryptoService = new CryptoService(storageService, secureStorageService, cryptoFunctionService); +const cryptoService = new CryptoService(storageService, secureStorageService, cryptoFunctionService, platformUtilsService); const tokenService = new TokenService(storageService); const appIdService = new AppIdService(storageService); const apiService = new ApiService(tokenService, platformUtilsService,