Fix `segmentsSha256Url` in export
This commit is contained in:
parent
7c9f07e140
commit
568a1b1e85
|
@ -224,7 +224,7 @@ export class VideosExporter extends AbstractUserExporter <VideoExportJSON> {
|
||||||
return streamingPlaylists.map(p => ({
|
return streamingPlaylists.map(p => ({
|
||||||
type: p.type,
|
type: p.type,
|
||||||
playlistUrl: p.getMasterPlaylistUrl(video),
|
playlistUrl: p.getMasterPlaylistUrl(video),
|
||||||
segmentsSha256Url: p.getMasterPlaylistUrl(video),
|
segmentsSha256Url: p.getSha256SegmentsUrl(video),
|
||||||
files: this.exportFilesJSON(video, p.VideoFiles)
|
files: this.exportFilesJSON(video, p.VideoFiles)
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue