diff --git a/jslib b/jslib index f4c66b2c..78429aa7 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit f4c66b2c8c243935bf25f689b16afaa5d6345f1b +Subproject commit 78429aa7201989ad74a9ca36cc6832fcce0d4aee diff --git a/src/app/accounts/lock.component.ts b/src/app/accounts/lock.component.ts index 2f0db827..f5db7311 100644 --- a/src/app/accounts/lock.component.ts +++ b/src/app/accounts/lock.component.ts @@ -43,11 +43,11 @@ export class LockComponent extends BaseLockComponent implements OnDestroy { storageService: StorageService, vaultTimeoutService: VaultTimeoutService, environmentService: EnvironmentService, stateService: StateService, apiService: ApiService, private route: ActivatedRoute, - private broadcasterService: BroadcasterService, private ngZone: NgZone, + private broadcasterService: BroadcasterService, ngZone: NgZone, logService: LogService, keyConnectorService: KeyConnectorService) { super(router, i18nService, platformUtilsService, messagingService, userService, cryptoService, storageService, vaultTimeoutService, environmentService, stateService, apiService, logService, - keyConnectorService); + keyConnectorService, ngZone); } async ngOnInit() { diff --git a/src/app/accounts/login.component.ts b/src/app/accounts/login.component.ts index 5a8b0b31..3c223527 100644 --- a/src/app/accounts/login.component.ts +++ b/src/app/accounts/login.component.ts @@ -45,10 +45,10 @@ export class LoginComponent extends BaseLoginComponent implements OnDestroy { platformUtilsService: PlatformUtilsService, stateService: StateService, environmentService: EnvironmentService, passwordGenerationService: PasswordGenerationService, cryptoFunctionService: CryptoFunctionService, storageService: StorageService, - private broadcasterService: BroadcasterService, private ngZone: NgZone, + private broadcasterService: BroadcasterService, ngZone: NgZone, private messagingService: MessagingService, logService: LogService) { super(authService, router, platformUtilsService, i18nService, stateService, environmentService, - passwordGenerationService, cryptoFunctionService, storageService, logService); + passwordGenerationService, cryptoFunctionService, storageService, logService, ngZone); super.onSuccessfulLogin = () => { return syncService.fullSync(true); };