aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-08-17 11:27:47 +0200
committerChocobozzz <me@florianbigard.com>2021-08-17 14:01:45 +0200
commit1378c0d343028f3d40d7d795422684ab9e6a1599 (patch)
tree08062b84a38a7e2dfe0aa674e7ca8e1b7321044e /client/src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts
parentc186a67f90203af6bfa434f026efdc99193bcd65 (diff)
downloadPeerTube-1378c0d343028f3d40d7d795422684ab9e6a1599.tar.gz
PeerTube-1378c0d343028f3d40d7d795422684ab9e6a1599.tar.zst
PeerTube-1378c0d343028f3d40d7d795422684ab9e6a1599.zip
Fix client lint
Diffstat (limited to 'client/src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts')
-rw-r--r--client/src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts b/client/src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts
index 433475f66..d983aacd9 100644
--- a/client/src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts
+++ b/client/src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts
@@ -59,15 +59,15 @@ export class MyVideoChannelCreateComponent extends MyVideoChannelEdit implements
59 .pipe( 59 .pipe(
60 switchMap(() => this.uploadAvatar()), 60 switchMap(() => this.uploadAvatar()),
61 switchMap(() => this.uploadBanner()) 61 switchMap(() => this.uploadBanner())
62 ).subscribe( 62 ).subscribe({
63 () => { 63 next: () => {
64 this.authService.refreshUserInformation() 64 this.authService.refreshUserInformation()
65 65
66 this.notifier.success($localize`Video channel ${videoChannelCreate.displayName} created.`) 66 this.notifier.success($localize`Video channel ${videoChannelCreate.displayName} created.`)
67 this.router.navigate(['/my-library', 'video-channels']) 67 this.router.navigate(['/my-library', 'video-channels'])
68 }, 68 },
69 69
70 err => { 70 error: err => {
71 if (err.status === HttpStatusCode.CONFLICT_409) { 71 if (err.status === HttpStatusCode.CONFLICT_409) {
72 this.error = $localize`This name already exists on this instance.` 72 this.error = $localize`This name already exists on this instance.`
73 return 73 return
@@ -75,7 +75,7 @@ export class MyVideoChannelCreateComponent extends MyVideoChannelEdit implements
75 75
76 this.error = err.message 76 this.error = err.message
77 } 77 }
78 ) 78 })
79 } 79 }
80 80
81 onAvatarChange (formData: FormData) { 81 onAvatarChange (formData: FormData) {