about summary refs log tree commit diff
path: root/youtube_dl/downloader
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2018-06-12 03:12:29 +0700
committerSergey M․ <dstftw@gmail.com>2018-06-12 03:12:29 +0700
commit5d6c81b63f08f1ea0c2d01579c99fe7c8f0aa6e0 (patch)
tree396194077b7093b09177d774a9724d35a1b52080 /youtube_dl/downloader
parentdc53c7863481f927bb011ad28784facec428ce22 (diff)
downloadyoutube-dl-5d6c81b63f08f1ea0c2d01579c99fe7c8f0aa6e0.tar.gz
youtube-dl-5d6c81b63f08f1ea0c2d01579c99fe7c8f0aa6e0.tar.xz
youtube-dl-5d6c81b63f08f1ea0c2d01579c99fe7c8f0aa6e0.zip
[downloader/http] Fix resume when writing ot stdout (closes #16699)
Diffstat (limited to 'youtube_dl/downloader')
-rw-r--r--youtube_dl/downloader/http.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/youtube_dl/downloader/http.py b/youtube_dl/downloader/http.py
index a22875f69..5b1e96013 100644
--- a/youtube_dl/downloader/http.py
+++ b/youtube_dl/downloader/http.py
@@ -217,10 +217,11 @@ class HttpFD(FileDownloader):
             before = start  # start measuring
 
             def retry(e):
-                if ctx.tmpfilename != '-':
+                to_stdout = ctx.tmpfilename == '-'
+                if not to_stdout:
                     ctx.stream.close()
                 ctx.stream = None
-                ctx.resume_len = os.path.getsize(encodeFilename(ctx.tmpfilename))
+                ctx.resume_len = byte_counter if to_stdout else os.path.getsize(encodeFilename(ctx.tmpfilename))
                 raise RetryDownload(e)
 
             while True: