Fix `segmentsSha256Url` in export

pull/6449/head
Chocobozzz 2024-06-03 09:44:12 +02:00
parent 7c9f07e140
commit 568a1b1e85
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ export class VideosExporter extends AbstractUserExporter <VideoExportJSON> {
return streamingPlaylists.map(p => ({
type: p.type,
playlistUrl: p.getMasterPlaylistUrl(video),
segmentsSha256Url: p.getMasterPlaylistUrl(video),
segmentsSha256Url: p.getSha256SegmentsUrl(video),
files: this.exportFilesJSON(video, p.VideoFiles)
}))
}