diff options
author | Florent <florent.git@zeteo.me> | 2022-08-04 09:22:21 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2022-08-04 09:49:26 +0200 |
commit | b37d80e3ced7d731bf0a0e985258041419cd972a (patch) | |
tree | bbb959dc467a043b10134f853487f015f06130ba /server/lib | |
parent | 3a818abdc0746b95a34ce66bb109453c2f0630d8 (diff) | |
download | PeerTube-b37d80e3ced7d731bf0a0e985258041419cd972a.tar.gz PeerTube-b37d80e3ced7d731bf0a0e985258041419cd972a.tar.zst PeerTube-b37d80e3ced7d731bf0a0e985258041419cd972a.zip |
Fix lint on hls.ts
Diffstat (limited to 'server/lib')
-rw-r--r-- | server/lib/hls.ts | 2 |
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 | ||
103 | async function updateSha256VODSegments (video: MVideo, playlistArg: MStreamingPlaylist): Promise<MStreamingPlaylistFilesVideo> { | 103 | function 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 | ||