Browse Source

[downloader/http] Fix resume when writing ot stdout (closes #16699)

Sergey M․ 7 years ago
parent
commit
5d6c81b63f
1 changed files with 3 additions and 2 deletions
  1. 3 2
      youtube_dl/downloader/http.py

+ 3 - 2
youtube_dl/downloader/http.py

@@ -217,10 +217,11 @@ class HttpFD(FileDownloader):
             before = start  # start measuring
             before = start  # start measuring
 
 
             def retry(e):
             def retry(e):
-                if ctx.tmpfilename != '-':
+                to_stdout = ctx.tmpfilename == '-'
+                if not to_stdout:
                     ctx.stream.close()
                     ctx.stream.close()
                 ctx.stream = None
                 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)
                 raise RetryDownload(e)
 
 
             while True:
             while True: