aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/downloader/fragment.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2016-01-10 14:32:53 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2016-01-10 14:41:38 +0100
commit3c91e41614a0f3bfab8710e861c895b78d93bce8 (patch)
tree82710cb919c9123af8953900a3cabb8a7d9a2d75 /youtube_dl/downloader/fragment.py
parent7e8a800f29d52cbc6057638595df05ac69f622bb (diff)
downloadyoutube-dl-3c91e41614a0f3bfab8710e861c895b78d93bce8.zip
youtube-dl-3c91e41614a0f3bfab8710e861c895b78d93bce8.tar.gz
youtube-dl-3c91e41614a0f3bfab8710e861c895b78d93bce8.tar.bz2
[downloader/fragment] Don't fail if the 'Content-Length' header is missing
In some dailymotion videos (like http://www.dailymotion.com/video/x3k0dtv from #8156) the segments URLs don't have the 'Content-Length' header and HttpFD sets the 'totat_bytes' field to None, so we also use '0' in that case (since we do different math operations with it).
Diffstat (limited to 'youtube_dl/downloader/fragment.py')
-rw-r--r--youtube_dl/downloader/fragment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/downloader/fragment.py b/youtube_dl/downloader/fragment.py
index 5a64b29..3da5546 100644
--- a/youtube_dl/downloader/fragment.py
+++ b/youtube_dl/downloader/fragment.py
@@ -66,7 +66,7 @@ class FragmentFD(FileDownloader):
if s['status'] not in ('downloading', 'finished'):
return
- frag_total_bytes = s.get('total_bytes', 0)
+ frag_total_bytes = s.get('total_bytes') or 0
if s['status'] == 'finished':
state['downloaded_bytes'] += frag_total_bytes
state['frag_index'] += 1