[downloader/http] Request last data block of exact remaining size
authorSergey M․ <dstftw@gmail.com>
Tue, 5 May 2020 14:30:27 +0000 (21:30 +0700)
committerSergey M․ <dstftw@gmail.com>
Tue, 5 May 2020 14:43:39 +0000 (21:43 +0700)
Always request last data block of exact size remaining to download if possible not the current block size.

youtube_dl/downloader/http.py

index 970103a8ddcca661f01fe7c3837e0050871b542d..5046878dfcd874013e737e85d32764a95737406e 100644 (file)
@@ -227,7 +227,7 @@ class HttpFD(FileDownloader):
             while True:
                 try:
                     # Download and write
             while True:
                 try:
                     # Download and write
-                    data_block = ctx.data.read(block_size if not is_test else min(block_size, data_len - byte_counter))
+                    data_block = ctx.data.read(block_size if data_len is None else min(block_size, data_len - byte_counter))
                 # socket.timeout is a subclass of socket.error but may not have
                 # errno set
                 except socket.timeout as e:
                 # socket.timeout is a subclass of socket.error but may not have
                 # errno set
                 except socket.timeout as e: