diff options
Diffstat (limited to 'server/models')
-rw-r--r-- | server/models/video/video.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/models/video/video.ts b/server/models/video/video.ts index 391568df4..3e2b4ce64 100644 --- a/server/models/video/video.ts +++ b/server/models/video/video.ts | |||
@@ -920,7 +920,7 @@ export class VideoModel extends Model<VideoModel> { | |||
920 | url.push({ | 920 | url.push({ |
921 | type: 'Link', | 921 | type: 'Link', |
922 | mimeType: 'video/' + file.extname.replace('.', ''), | 922 | mimeType: 'video/' + file.extname.replace('.', ''), |
923 | url: this.getVideoFileUrl(file, baseUrlHttp), | 923 | href: this.getVideoFileUrl(file, baseUrlHttp), |
924 | width: file.resolution, | 924 | width: file.resolution, |
925 | size: file.size | 925 | size: file.size |
926 | }) | 926 | }) |
@@ -928,14 +928,14 @@ export class VideoModel extends Model<VideoModel> { | |||
928 | url.push({ | 928 | url.push({ |
929 | type: 'Link', | 929 | type: 'Link', |
930 | mimeType: 'application/x-bittorrent', | 930 | mimeType: 'application/x-bittorrent', |
931 | url: this.getTorrentUrl(file, baseUrlHttp), | 931 | href: this.getTorrentUrl(file, baseUrlHttp), |
932 | width: file.resolution | 932 | width: file.resolution |
933 | }) | 933 | }) |
934 | 934 | ||
935 | url.push({ | 935 | url.push({ |
936 | type: 'Link', | 936 | type: 'Link', |
937 | mimeType: 'application/x-bittorrent;x-scheme-handler/magnet', | 937 | mimeType: 'application/x-bittorrent;x-scheme-handler/magnet', |
938 | url: this.generateMagnetUri(file, baseUrlHttp, baseUrlWs), | 938 | href: this.generateMagnetUri(file, baseUrlHttp, baseUrlWs), |
939 | width: file.resolution | 939 | width: file.resolution |
940 | }) | 940 | }) |
941 | } | 941 | } |
@@ -944,7 +944,7 @@ export class VideoModel extends Model<VideoModel> { | |||
944 | url.push({ | 944 | url.push({ |
945 | type: 'Link', | 945 | type: 'Link', |
946 | mimeType: 'text/html', | 946 | mimeType: 'text/html', |
947 | url: CONFIG.WEBSERVER.URL + '/videos/watch/' + this.uuid | 947 | href: CONFIG.WEBSERVER.URL + '/videos/watch/' + this.uuid |
948 | }) | 948 | }) |
949 | 949 | ||
950 | return { | 950 | return { |