mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-30 20:43:53 -06:00
Fix redundancy row grabbing
This commit is contained in:
parent
9f7657b6b6
commit
31d5d916c3
@ -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]
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user