From 158e60ee895e766740004abc1ba8102c72f566f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Tue, 24 Oct 2017 13:05:31 +0200 Subject: [PATCH] [3dbooru] enable download continuation behoimi.org doesn't respect 'Range' headers and doesn't report 'Content-Length' for compressed content encodings. --- gallery_dl/extractor/3dbooru.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gallery_dl/extractor/3dbooru.py b/gallery_dl/extractor/3dbooru.py index b864c910..3d084b0d 100644 --- a/gallery_dl/extractor/3dbooru.py +++ b/gallery_dl/extractor/3dbooru.py @@ -18,6 +18,7 @@ class ThreedeebooruExtractor(booru.JSONBooruExtractor): headers = { "Referer": "http://behoimi.org/post/show/", "User-Agent": "Mozilla/5.0", + "Accept-Encoding": "identity", }