diff options
author | Chocobozzz <me@florianbigard.com> | 2021-06-28 17:30:59 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2021-06-29 14:56:35 +0200 |
commit | d4a8e7a65f97bb3257facc13e1ae8ffdbad61ddb (patch) | |
tree | a4cb07318100031951c3dffc61f4f2cb95d2cbd0 /client/src/app/shared/shared-video-miniature | |
parent | 62ddc31a9e4b92d7d27898ccfc363f68ab044139 (diff) | |
download | PeerTube-d4a8e7a65f97bb3257facc13e1ae8ffdbad61ddb.tar.gz PeerTube-d4a8e7a65f97bb3257facc13e1ae8ffdbad61ddb.tar.zst PeerTube-d4a8e7a65f97bb3257facc13e1ae8ffdbad61ddb.zip |
Support short uuid for GET video/playlist
Diffstat (limited to 'client/src/app/shared/shared-video-miniature')
-rw-r--r-- | client/src/app/shared/shared-video-miniature/video-miniature.component.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/shared/shared-video-miniature/video-miniature.component.ts b/client/src/app/shared/shared-video-miniature/video-miniature.component.ts index fe161c977..67e0de6a2 100644 --- a/client/src/app/shared/shared-video-miniature/video-miniature.component.ts +++ b/client/src/app/shared/shared-video-miniature/video-miniature.component.ts | |||
@@ -85,7 +85,7 @@ export class VideoMiniatureComponent implements OnInit { | |||
85 | playlistElementId?: number | 85 | playlistElementId?: number |
86 | } | 86 | } |
87 | 87 | ||
88 | videoRouterLink: any[] = [] | 88 | videoRouterLink: string | any[] = [] |
89 | videoHref: string | 89 | videoHref: string |
90 | videoTarget: string | 90 | videoTarget: string |
91 | 91 | ||
@@ -120,7 +120,7 @@ export class VideoMiniatureComponent implements OnInit { | |||
120 | 120 | ||
121 | buildVideoLink () { | 121 | buildVideoLink () { |
122 | if (this.videoLinkType === 'internal' || !this.video.url) { | 122 | if (this.videoLinkType === 'internal' || !this.video.url) { |
123 | this.videoRouterLink = [ '/w', this.video.uuid ] | 123 | this.videoRouterLink = Video.buildWatchUrl(this.video) |
124 | return | 124 | return |
125 | } | 125 | } |
126 | 126 | ||