diff options
Diffstat (limited to 'client/src/app/modal/instance-config-warning-modal.component.ts')
-rw-r--r-- | client/src/app/modal/instance-config-warning-modal.component.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/modal/instance-config-warning-modal.component.ts b/client/src/app/modal/instance-config-warning-modal.component.ts index 8bf7672be..e40958976 100644 --- a/client/src/app/modal/instance-config-warning-modal.component.ts +++ b/client/src/app/modal/instance-config-warning-modal.component.ts | |||
@@ -50,10 +50,10 @@ export class InstanceConfigWarningModalComponent { | |||
50 | peertubeLocalStorage.setItem(this.LOCAL_STORAGE_KEYS.NO_INSTANCE_CONFIG_WARNING_MODAL, 'true') | 50 | peertubeLocalStorage.setItem(this.LOCAL_STORAGE_KEYS.NO_INSTANCE_CONFIG_WARNING_MODAL, 'true') |
51 | 51 | ||
52 | this.userService.updateMyProfile({ noInstanceConfigWarningModal: true }) | 52 | this.userService.updateMyProfile({ noInstanceConfigWarningModal: true }) |
53 | .subscribe( | 53 | .subscribe({ |
54 | () => console.log('We will not open the instance config warning modal again.'), | 54 | next: () => console.log('We will not open the instance config warning modal again.'), |
55 | 55 | ||
56 | err => this.notifier.error(err.message) | 56 | error: err => this.notifier.error(err.message) |
57 | ) | 57 | }) |
58 | } | 58 | } |
59 | } | 59 | } |