Fix redundancy row grabbing
This commit is contained in:
parent
9f7657b6b6
commit
31d5d916c3
1 changed files with 2 additions and 6 deletions
|
@ -113,7 +113,7 @@ export class VideoModelBuilder {
|
|||
|
||||
const videoModel = this.videosMemo[row.id]
|
||||
this.addWebTorrentFile(row, videoModel)
|
||||
this.addRedundancy(row, 'VideoFiles.RedundancyVideos', this.videoFileMemo[id])
|
||||
this.addRedundancy(row, 'VideoFiles', this.videoFileMemo[id])
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -128,11 +128,7 @@ export class VideoModelBuilder {
|
|||
|
||||
this.addStreamingPlaylist(row, videoModel)
|
||||
this.addStreamingPlaylistFile(row)
|
||||
this.addRedundancy(
|
||||
row,
|
||||
'VideoStreamingPlaylists.RedundancyVideos',
|
||||
this.videoStreamingPlaylistMemo[id]
|
||||
)
|
||||
this.addRedundancy(row, 'VideoStreamingPlaylists', this.videoStreamingPlaylistMemo[id])
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue