diff --git a/docs/configuration.rst b/docs/configuration.rst index 0efeaa765e..13e8628cf0 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -550,7 +550,7 @@ extractor.danbooru.ugoira ------------------------- =========== ===== Type ``bool`` -Default ``true`` +Default ``false`` Description Controls the download target for Ugoira posts. * ``true``: Original ZIP archives diff --git a/docs/gallery-dl.conf b/docs/gallery-dl.conf index 22646bcf90..8290a23db4 100644 --- a/docs/gallery-dl.conf +++ b/docs/gallery-dl.conf @@ -25,7 +25,7 @@ { "username": null, "password": null, - "ugoira": true + "ugoira": false }, "deviantart": { diff --git a/gallery_dl/extractor/danbooru.py b/gallery_dl/extractor/danbooru.py index 3a0d0ef122..e0edf892cc 100644 --- a/gallery_dl/extractor/danbooru.py +++ b/gallery_dl/extractor/danbooru.py @@ -32,7 +32,7 @@ class DanbooruExtractor(SharedConfigMixin, Extractor): def __init__(self, match): super().__init__(match) self.root = "https://{}.donmai.us".format(match.group(1)) - self.ugoira = self.config("ugoira", True) + self.ugoira = self.config("ugoira", False) self.params = {} username, api_key = self._get_auth_info() @@ -156,8 +156,8 @@ class DanbooruPostExtractor(DanbooruExtractor): "content": "5e255713cbf0a8e0801dc423563c34d896bb9229", }), ("https://danbooru.donmai.us/posts/3613024", { - "pattern": r"https?://.+\.webm$", - "options": (("ugoira", False),) + "pattern": r"https?://.+\.zip$", + "options": (("ugoira", True),) }) )