aboutsummaryrefslogtreecommitdiffhomepage
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-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 f541dd5d1..f2fe893a9 100644
--- a/server/lib/hls.ts
+++ b/server/lib/hls.ts
@@ -130,7 +130,7 @@ function downloadPlaylistSegments (playlistUrl: string, destinationDir: string,
130 for (const fileUrl of fileUrls) { 130 for (const fileUrl of fileUrls) {
131 const destPath = join(tmpDirectory, basename(fileUrl)) 131 const destPath = join(tmpDirectory, basename(fileUrl))
132 132
133 await doRequestAndSaveToFile(fileUrl, destPath, { bodyKBLimit: remainingBodyKBLimit, timeout: REQUEST_TIMEOUTS.FILE }) 133 await doRequestAndSaveToFile(fileUrl, destPath, { bodyKBLimit: remainingBodyKBLimit, timeout: REQUEST_TIMEOUTS.REDUNDANCY })
134 134
135 const { size } = await stat(destPath) 135 const { size } = await stat(destPath)
136 remainingBodyKBLimit -= (size / 1000) 136 remainingBodyKBLimit -= (size / 1000)