remove duplicate file checks in video model (#3289)
- server/models/video/video.ts (delete duplicate): build duplicate file id addition in buildAPIResult
This commit is contained in:
parent
a30995fc27
commit
b8fa24491c
|
@ -1657,13 +1657,6 @@ export class VideoModel extends Model<VideoModel> {
|
||||||
videoFilesDone.add(row.VideoFiles.id)
|
videoFilesDone.add(row.VideoFiles.id)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (row.VideoFiles?.id && !videoFilesDone.has(row.VideoFiles.id)) {
|
|
||||||
const videoFileModel = new VideoFileModel(pick(row.VideoFiles, videoFileKeys))
|
|
||||||
videoModel.VideoFiles.push(videoFileModel)
|
|
||||||
|
|
||||||
videoFilesDone.add(row.VideoFiles.id)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (row.VideoStreamingPlaylists?.id && !videoStreamingPlaylistMemo[row.VideoStreamingPlaylists.id]) {
|
if (row.VideoStreamingPlaylists?.id && !videoStreamingPlaylistMemo[row.VideoStreamingPlaylists.id]) {
|
||||||
const streamingPlaylist = new VideoStreamingPlaylistModel(pick(row.VideoStreamingPlaylists, videoStreamingPlaylistKeys))
|
const streamingPlaylist = new VideoStreamingPlaylistModel(pick(row.VideoStreamingPlaylists, videoStreamingPlaylistKeys))
|
||||||
streamingPlaylist.VideoFiles = []
|
streamingPlaylist.VideoFiles = []
|
||||||
|
|
Loading…
Reference in New Issue