diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-07-11 16:01:56 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-07-11 16:01:56 +0200 |
commit | 0a6658fdcbd779ada8f3758048c326e997902d5a (patch) | |
tree | 5de40bf901db0299011104b1344783637b964eb0 /client/src/app/videos/video-edit | |
parent | e6d4b0ff2404dcf0b3a755c3fcc415ffeb6e754d (diff) | |
download | PeerTube-0a6658fdcbd779ada8f3758048c326e997902d5a.tar.gz PeerTube-0a6658fdcbd779ada8f3758048c326e997902d5a.tar.zst PeerTube-0a6658fdcbd779ada8f3758048c326e997902d5a.zip |
Use global uuid instead of remoteId for videos
Diffstat (limited to 'client/src/app/videos/video-edit')
-rw-r--r-- | client/src/app/videos/video-edit/video-update.component.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/videos/video-edit/video-update.component.ts b/client/src/app/videos/video-edit/video-update.component.ts index 9ee7ca6a8..6c57a23d8 100644 --- a/client/src/app/videos/video-edit/video-update.component.ts +++ b/client/src/app/videos/video-edit/video-update.component.ts | |||
@@ -85,8 +85,8 @@ export class VideoUpdateComponent extends FormReactive implements OnInit { | |||
85 | this.videoLicences = this.videoService.videoLicences | 85 | this.videoLicences = this.videoService.videoLicences |
86 | this.videoLanguages = this.videoService.videoLanguages | 86 | this.videoLanguages = this.videoService.videoLanguages |
87 | 87 | ||
88 | const id = this.route.snapshot.params['id'] | 88 | const uuid: string = this.route.snapshot.params['uuid'] |
89 | this.videoService.getVideo(id) | 89 | this.videoService.getVideo(uuid) |
90 | .subscribe( | 90 | .subscribe( |
91 | video => { | 91 | video => { |
92 | this.video = video | 92 | this.video = video |
@@ -118,7 +118,7 @@ export class VideoUpdateComponent extends FormReactive implements OnInit { | |||
118 | .subscribe( | 118 | .subscribe( |
119 | () => { | 119 | () => { |
120 | this.notificationsService.success('Success', 'Video updated.') | 120 | this.notificationsService.success('Success', 'Video updated.') |
121 | this.router.navigate([ '/videos/watch', this.video.id ]) | 121 | this.router.navigate([ '/videos/watch', this.video.uuid ]) |
122 | }, | 122 | }, |
123 | 123 | ||
124 | err => { | 124 | err => { |