diff options
-rw-r--r-- | server/lib/activitypub/url.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/activitypub/url.ts b/server/lib/activitypub/url.ts index 2e7c56955..e792be698 100644 --- a/server/lib/activitypub/url.ts +++ b/server/lib/activitypub/url.ts | |||
@@ -11,7 +11,7 @@ function getVideoActivityPubUrl (video: VideoModel) { | |||
11 | } | 11 | } |
12 | 12 | ||
13 | function getVideoCacheFileActivityPubUrl (videoFile: VideoFileModel) { | 13 | function getVideoCacheFileActivityPubUrl (videoFile: VideoFileModel) { |
14 | const suffixFPS = videoFile.fps ? '-' + videoFile.fps : '' | 14 | const suffixFPS = videoFile.fps && videoFile.fps !== -1 ? '-' + videoFile.fps : '' |
15 | 15 | ||
16 | return `${CONFIG.WEBSERVER.URL}/redundancy/videos/${videoFile.Video.uuid}/${videoFile.resolution}${suffixFPS}` | 16 | return `${CONFIG.WEBSERVER.URL}/redundancy/videos/${videoFile.Video.uuid}/${videoFile.resolution}${suffixFPS}` |
17 | } | 17 | } |