From a0d916ed4167c8eb6256767bd82bf16547e45124 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Mon, 7 Sep 2020 23:48:28 +0200 Subject: [PATCH] [exhentai] update wait time before original image download (#978) depend on 'wait-max', don't use a hard-coded value --- gallery_dl/extractor/exhentai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery_dl/extractor/exhentai.py b/gallery_dl/extractor/exhentai.py index 80c71875..f5cf63db 100644 --- a/gallery_dl/extractor/exhentai.py +++ b/gallery_dl/extractor/exhentai.py @@ -193,7 +193,7 @@ class ExhentaiGalleryExtractor(ExhentaiExtractor): self._check_limits(data) if "/fullimg.php" in url: data["extension"] = "" - self.wait(1.5) + self.wait(self.wait_max / 4) yield Message.Url, url, data def get_metadata(self, page):