diff options
Diffstat (limited to 'client/src/app/modal/quick-settings-modal.component.ts')
-rw-r--r-- | client/src/app/modal/quick-settings-modal.component.ts | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/client/src/app/modal/quick-settings-modal.component.ts b/client/src/app/modal/quick-settings-modal.component.ts index 41d6c9f47..155794d1b 100644 --- a/client/src/app/modal/quick-settings-modal.component.ts +++ b/client/src/app/modal/quick-settings-modal.component.ts | |||
@@ -32,9 +32,11 @@ export class QuickSettingsModalComponent extends FormReactive implements OnInit | |||
32 | 32 | ||
33 | ngOnInit () { | 33 | ngOnInit () { |
34 | this.user = this.userService.getAnonymousUser() | 34 | this.user = this.userService.getAnonymousUser() |
35 | this.localStorageService.watch().subscribe( | 35 | this.localStorageService.watch() |
36 | () => this.user = this.userService.getAnonymousUser() | 36 | .subscribe( |
37 | ) | 37 | () => this.user = this.userService.getAnonymousUser() |
38 | ) | ||
39 | |||
38 | this.userInformationLoaded.next(true) | 40 | this.userInformationLoaded.next(true) |
39 | 41 | ||
40 | this.authService.loginChangedSource | 42 | this.authService.loginChangedSource |