1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-16 01:59:33 +00:00

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

This commit is contained in:
Sergey M․ 2018-06-12 03:12:29 +07:00
parent dc53c78634
commit 5d6c81b63f
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -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: