aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/hls.ts
diff options
context:
space:
mode:
authorFlorent <florent.git@zeteo.me>2022-08-04 09:22:21 +0200
committerChocobozzz <chocobozzz@cpy.re>2022-08-04 09:49:26 +0200
commitb37d80e3ced7d731bf0a0e985258041419cd972a (patch)
treebbb959dc467a043b10134f853487f015f06130ba /server/lib/hls.ts
parent3a818abdc0746b95a34ce66bb109453c2f0630d8 (diff)
downloadPeerTube-b37d80e3ced7d731bf0a0e985258041419cd972a.tar.gz
PeerTube-b37d80e3ced7d731bf0a0e985258041419cd972a.tar.zst
PeerTube-b37d80e3ced7d731bf0a0e985258041419cd972a.zip
Fix lint on hls.ts
Diffstat (limited to 'server/lib/hls.ts')
-rw-r--r--server/lib/hls.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/hls.ts b/server/lib/hls.ts
index 20754219f..ad29e4c90 100644
--- a/server/lib/hls.ts
+++ b/server/lib/hls.ts
@@ -100,7 +100,7 @@ function updateMasterHLSPlaylist (video: MVideo, playlistArg: MStreamingPlaylist
100 100
101// --------------------------------------------------------------------------- 101// ---------------------------------------------------------------------------
102 102
103async function updateSha256VODSegments (video: MVideo, playlistArg: MStreamingPlaylist): Promise<MStreamingPlaylistFilesVideo> { 103function updateSha256VODSegments (video: MVideo, playlistArg: MStreamingPlaylist): Promise<MStreamingPlaylistFilesVideo> {
104 return playlistFilesQueue.add(async () => { 104 return playlistFilesQueue.add(async () => {
105 const json: { [filename: string]: { [range: string]: string } } = {} 105 const json: { [filename: string]: { [range: string]: string } } = {}
106 106