diff options
author | Chocobozzz <me@florianbigard.com> | 2021-01-27 16:42:13 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-01-27 16:42:13 +0100 |
commit | 7a4994873c0b3394d04e16e877fc7418bc8b146a (patch) | |
tree | 36f7991bf29696d5ba44d7d09e35d1ec5f484140 /server/models/video/video-query-builder.ts | |
parent | 00b87c5791ecd645bb78cbb9872d60e1f957bdfa (diff) | |
download | PeerTube-7a4994873c0b3394d04e16e877fc7418bc8b146a.tar.gz PeerTube-7a4994873c0b3394d04e16e877fc7418bc8b146a.tar.zst PeerTube-7a4994873c0b3394d04e16e877fc7418bc8b146a.zip |
Fix rss feed with HLS videos
Diffstat (limited to 'server/models/video/video-query-builder.ts')
-rw-r--r-- | server/models/video/video-query-builder.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/models/video/video-query-builder.ts b/server/models/video/video-query-builder.ts index 25d5042b7..9e5b6febb 100644 --- a/server/models/video/video-query-builder.ts +++ b/server/models/video/video-query-builder.ts | |||
@@ -472,6 +472,8 @@ function wrapForAPIResults (baseQuery: string, replacements: any, options: Build | |||
472 | '"VideoFiles"."videoId"': '"VideoFiles.videoId"', | 472 | '"VideoFiles"."videoId"': '"VideoFiles.videoId"', |
473 | 473 | ||
474 | '"VideoStreamingPlaylists"."id"': '"VideoStreamingPlaylists.id"', | 474 | '"VideoStreamingPlaylists"."id"': '"VideoStreamingPlaylists.id"', |
475 | '"VideoStreamingPlaylists"."playlistUrl"': '"VideoStreamingPlaylists.playlistUrl"', | ||
476 | '"VideoStreamingPlaylists"."type"': '"VideoStreamingPlaylists.type"', | ||
475 | '"VideoStreamingPlaylists->VideoFiles"."id"': '"VideoStreamingPlaylists.VideoFiles.id"', | 477 | '"VideoStreamingPlaylists->VideoFiles"."id"': '"VideoStreamingPlaylists.VideoFiles.id"', |
476 | '"VideoStreamingPlaylists->VideoFiles"."createdAt"': '"VideoStreamingPlaylists.VideoFiles.createdAt"', | 478 | '"VideoStreamingPlaylists->VideoFiles"."createdAt"': '"VideoStreamingPlaylists.VideoFiles.createdAt"', |
477 | '"VideoStreamingPlaylists->VideoFiles"."updatedAt"': '"VideoStreamingPlaylists.VideoFiles.updatedAt"', | 479 | '"VideoStreamingPlaylists->VideoFiles"."updatedAt"': '"VideoStreamingPlaylists.VideoFiles.updatedAt"', |
@@ -480,6 +482,7 @@ function wrapForAPIResults (baseQuery: string, replacements: any, options: Build | |||
480 | '"VideoStreamingPlaylists->VideoFiles"."extname"': '"VideoStreamingPlaylists.VideoFiles.extname"', | 482 | '"VideoStreamingPlaylists->VideoFiles"."extname"': '"VideoStreamingPlaylists.VideoFiles.extname"', |
481 | '"VideoStreamingPlaylists->VideoFiles"."infoHash"': '"VideoStreamingPlaylists.VideoFiles.infoHash"', | 483 | '"VideoStreamingPlaylists->VideoFiles"."infoHash"': '"VideoStreamingPlaylists.VideoFiles.infoHash"', |
482 | '"VideoStreamingPlaylists->VideoFiles"."fps"': '"VideoStreamingPlaylists.VideoFiles.fps"', | 484 | '"VideoStreamingPlaylists->VideoFiles"."fps"': '"VideoStreamingPlaylists.VideoFiles.fps"', |
485 | '"VideoStreamingPlaylists->VideoFiles"."videoStreamingPlaylistId"': '"VideoStreamingPlaylists.VideoFiles.videoStreamingPlaylistId"', | ||
483 | '"VideoStreamingPlaylists->VideoFiles"."videoId"': '"VideoStreamingPlaylists.VideoFiles.videoId"' | 486 | '"VideoStreamingPlaylists->VideoFiles"."videoId"': '"VideoStreamingPlaylists.VideoFiles.videoId"' |
484 | }) | 487 | }) |
485 | } | 488 | } |