1
1
diff --git a/gallery_dl/downloader/http.py b/gallery_dl/downloader/http.py
2
- index 54750ac733..2ab721d0e8 100644
2
+ index faea9e52f7..802a7dc764 100644
3
3
--- a/gallery_dl/downloader/http.py
4
4
+++ b/gallery_dl/downloader/http.py
5
5
@@ -12,7 +12,7 @@
6
6
import mimetypes
7
7
from requests.exceptions import RequestException, ConnectionError, Timeout
8
8
from .common import DownloaderBase
9
- - from .. import text, util
10
- + from .. import text, util, ffprobe
9
+ - from .. import text, util, output
10
+ + from .. import text, util, output, ffprobe
11
11
from ssl import SSLError
12
12
13
13
@@ -20,7 +20,7 @@ index 54750ac733..2ab721d0e8 100644
20
20
self.retries = self.config("retries", extractor._retries)
21
21
self.retry_codes = self.config("retry-codes", extractor._retry_codes)
22
22
self.timeout = self.config("timeout", extractor._timeout)
23
- @@ -59 ,6 +61 ,20 @@ def __init__(self, job):
23
+ @@ -60 ,6 +62 ,20 @@ def __init__(self, job):
24
24
self.log.warning(
25
25
"Invalid maximum file size (%r)", self.maxsize)
26
26
self.maxsize = maxsize
@@ -41,7 +41,7 @@ index 54750ac733..2ab721d0e8 100644
41
41
if isinstance(self.chunk_size, str):
42
42
chunk_size = text.parse_bytes(self.chunk_size)
43
43
if not chunk_size:
44
- @@ -219 ,6 +235 ,28 @@ def _download_impl(self, url, pathfmt):
44
+ @@ -245 ,6 +261 ,28 @@ def _download_impl(self, url, pathfmt):
45
45
kwdict[metadata] = util.extract_headers(response)
46
46
build_path = True
47
47
@@ -172,10 +172,10 @@ index 0000000000..707f5786fb
172
172
+ except (ValueError, ZeroDivisionError):
173
173
+ return 0
174
174
diff --git a/gallery_dl/text.py b/gallery_dl/text.py
175
- index 5fd5a40715..bb6653d587 100644
175
+ index c1dde94982..bd06cb6926 100644
176
176
--- a/gallery_dl/text.py
177
177
+++ b/gallery_dl/text.py
178
- @@ -305 ,6 +305 ,28 @@ def parse_timestamp(ts, default=None):
178
+ @@ -304 ,6 +304 ,28 @@ def parse_timestamp(ts, default=None):
179
179
return default
180
180
181
181
0 commit comments