Fix redundancy row grabbing

pull/4126/head
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
1 changed files with 2 additions and 6 deletions

View File

@ -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])
}
}