From 064e7be78b8500a0b081158643f7b0cab0f6b710 Mon Sep 17 00:00:00 2001 From: C-3PO Date: Fri, 16 Nov 2018 03:06:34 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=84=20Fix=20comment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/cdn/downloadWithCurl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cdn/downloadWithCurl.ts b/src/cdn/downloadWithCurl.ts index 71e959a..5fd38df 100644 --- a/src/cdn/downloadWithCurl.ts +++ b/src/cdn/downloadWithCurl.ts @@ -11,7 +11,7 @@ export default function downloadWithCurl({ host, path, tempFileName }: {host: st const parameters: string[] = [ //... '--silent', - '--limit-rate', '20m', //maximum speed of 30 MB/s = 240 MBit/s + '--limit-rate', '20m', //maximum speed of 20 MB/s = 160 MBit/s '--speed-limit', String(Math.round(100 * 1024 * 1024 / 15)), //abort if less than 100 MB in 15 seconds '--speed-time', '15', '--output', tempFileName,