X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-watch%2Fvideo-watch-routing.module.ts;h=ce9250bdc756c8d80ba72a7e935c6e39372769b2;hb=693263e936763a851e3c8c020e3739def8bd4eca;hp=0d78090445f2c1a802d574fb0e55c07db4c3b186;hpb=f0a3988066f72a28bb44520af072f18d91d77dde;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/videos/+video-watch/video-watch-routing.module.ts b/client/src/app/videos/+video-watch/video-watch-routing.module.ts index 0d7809044..ce9250bdc 100644 --- a/client/src/app/videos/+video-watch/video-watch-routing.module.ts +++ b/client/src/app/videos/+video-watch/video-watch-routing.module.ts @@ -7,16 +7,16 @@ import { VideoWatchComponent } from './video-watch.component' const videoWatchRoutes: Routes = [ { - path: 'playlist/:uuid', + path: 'playlist/:playlistId', component: VideoWatchComponent, canActivate: [ MetaGuard ] }, { - path: ':uuid/comments/:commentId', - redirectTo: ':uuid' + path: ':videoId/comments/:commentId', + redirectTo: ':videoId' }, { - path: ':uuid', + path: ':videoId', component: VideoWatchComponent, canActivate: [ MetaGuard ] }