aboutsummaryrefslogtreecommitdiffhomepage
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-rw-r--r--server/models/video/formatter/video-format-utils.ts2
-rw-r--r--server/tests/shared/videos.ts1
2 files changed, 3 insertions, 0 deletions
diff --git a/server/models/video/formatter/video-format-utils.ts b/server/models/video/formatter/video-format-utils.ts
index fd02f8c64..e1b0eb610 100644
--- a/server/models/video/formatter/video-format-utils.ts
+++ b/server/models/video/formatter/video-format-utils.ts
@@ -256,6 +256,8 @@ function videoFilesModelToFormattedJSON (
256 .sort(sortByResolutionDesc) 256 .sort(sortByResolutionDesc)
257 .map(videoFile => { 257 .map(videoFile => {
258 return { 258 return {
259 id: videoFile.id,
260
259 resolution: { 261 resolution: {
260 id: videoFile.resolution, 262 id: videoFile.resolution,
261 label: videoFile.resolution === 0 ? 'Audio' : `${videoFile.resolution}p` 263 label: videoFile.resolution === 0 ? 'Audio' : `${videoFile.resolution}p`
diff --git a/server/tests/shared/videos.ts b/server/tests/shared/videos.ts
index 989865a49..3ab245392 100644
--- a/server/tests/shared/videos.ts
+++ b/server/tests/shared/videos.ts
@@ -115,6 +115,7 @@ async function completeVideoCheck (
115 // Transcoding enabled: extension will always be .mp4 115 // Transcoding enabled: extension will always be .mp4
116 if (attributes.files.length > 1) extension = '.mp4' 116 if (attributes.files.length > 1) extension = '.mp4'
117 117
118 expect(file.id).to.exist
118 expect(file.magnetUri).to.have.lengthOf.above(2) 119 expect(file.magnetUri).to.have.lengthOf.above(2)
119 120
120 expect(file.torrentDownloadUrl).to.match(new RegExp(`http://${host}/download/torrents/${uuidRegex}-${file.resolution.id}.torrent`)) 121 expect(file.torrentDownloadUrl).to.match(new RegExp(`http://${host}/download/torrents/${uuidRegex}-${file.resolution.id}.torrent`))