diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/models/video/video.ts | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/server/models/video/video.ts b/server/models/video/video.ts index 60f295056..70839aa89 100644 --- a/server/models/video/video.ts +++ b/server/models/video/video.ts | |||
@@ -1657,13 +1657,6 @@ export class VideoModel extends Model<VideoModel> { | |||
1657 | videoFilesDone.add(row.VideoFiles.id) | 1657 | videoFilesDone.add(row.VideoFiles.id) |
1658 | } | 1658 | } |
1659 | 1659 | ||
1660 | if (row.VideoFiles?.id && !videoFilesDone.has(row.VideoFiles.id)) { | ||
1661 | const videoFileModel = new VideoFileModel(pick(row.VideoFiles, videoFileKeys)) | ||
1662 | videoModel.VideoFiles.push(videoFileModel) | ||
1663 | |||
1664 | videoFilesDone.add(row.VideoFiles.id) | ||
1665 | } | ||
1666 | |||
1667 | if (row.VideoStreamingPlaylists?.id && !videoStreamingPlaylistMemo[row.VideoStreamingPlaylists.id]) { | 1660 | if (row.VideoStreamingPlaylists?.id && !videoStreamingPlaylistMemo[row.VideoStreamingPlaylists.id]) { |
1668 | const streamingPlaylist = new VideoStreamingPlaylistModel(pick(row.VideoStreamingPlaylists, videoStreamingPlaylistKeys)) | 1661 | const streamingPlaylist = new VideoStreamingPlaylistModel(pick(row.VideoStreamingPlaylists, videoStreamingPlaylistKeys)) |
1669 | streamingPlaylist.VideoFiles = [] | 1662 | streamingPlaylist.VideoFiles = [] |