aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+manage
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-05-09 10:47:46 +0200
committerChocobozzz <me@florianbigard.com>2022-05-09 10:47:46 +0200
commitcb28bb92daf1a0e123bc0144030c2bc65b865f4a (patch)
treed8834a76b1e9a02316efc194b32d490db32daf24 /client/src/app/+manage
parentf82ea670d83dd7a02843b5ccc36ab1ce180a8d44 (diff)
downloadPeerTube-cb28bb92daf1a0e123bc0144030c2bc65b865f4a.tar.gz
PeerTube-cb28bb92daf1a0e123bc0144030c2bc65b865f4a.tar.zst
PeerTube-cb28bb92daf1a0e123bc0144030c2bc65b865f4a.zip
Add URL redirection support for external auth
Diffstat (limited to 'client/src/app/+manage')
-rw-r--r--client/src/app/+manage/video-channel-edit/video-channel-update.component.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/+manage/video-channel-edit/video-channel-update.component.ts b/client/src/app/+manage/video-channel-edit/video-channel-update.component.ts
index 51cd45605..6b4947912 100644
--- a/client/src/app/+manage/video-channel-edit/video-channel-update.component.ts
+++ b/client/src/app/+manage/video-channel-edit/video-channel-update.component.ts
@@ -96,7 +96,7 @@ export class VideoChannelUpdateComponent extends VideoChannelEdit implements OnI
96 96
97 this.notifier.success($localize`Video channel ${videoChannelUpdate.displayName} updated.`) 97 this.notifier.success($localize`Video channel ${videoChannelUpdate.displayName} updated.`)
98 98
99 this.redirectService.redirectToPreviousRoute([ '/c', this.videoChannel.name ]) 99 this.redirectService.redirectToPreviousRoute('/c/' + this.videoChannel.name)
100 }, 100 },
101 101
102 error: err => { 102 error: err => {