1
0
Fork 0

Fix redundancy row grabbing

This commit is contained in:
Chocobozzz 2021-06-11 16:31:41 +02:00
parent 9f7657b6b6
commit 31d5d916c3
No known key found for this signature in database
GPG key ID: 583A612D890159BE

View file

@ -113,7 +113,7 @@ export class VideoModelBuilder {
const videoModel = this.videosMemo[row.id] const videoModel = this.videosMemo[row.id]
this.addWebTorrentFile(row, videoModel) 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.addStreamingPlaylist(row, videoModel)
this.addStreamingPlaylistFile(row) this.addStreamingPlaylistFile(row)
this.addRedundancy( this.addRedundancy(row, 'VideoStreamingPlaylists', this.videoStreamingPlaylistMemo[id])
row,
'VideoStreamingPlaylists.RedundancyVideos',
this.videoStreamingPlaylistMemo[id]
)
} }
} }