diff --git a/docs/configuration.rst b/docs/configuration.rst index b32dcfdc..c3cff2cd 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -1265,7 +1265,7 @@ extractor.hitomi.metadata Type ``bool`` Default - ``true`` + ``false`` Description Try to extract ``artist``, ``group``, ``parody``, and ``characters`` metadata. diff --git a/docs/gallery-dl.conf b/docs/gallery-dl.conf index 985bb1de..8e7ff6db 100644 --- a/docs/gallery-dl.conf +++ b/docs/gallery-dl.conf @@ -114,7 +114,7 @@ }, "hitomi": { - "metadata": true + "metadata": false }, "idolcomplex": { diff --git a/gallery_dl/extractor/hitomi.py b/gallery_dl/extractor/hitomi.py index a4ce9254..693c43ea 100644 --- a/gallery_dl/extractor/hitomi.py +++ b/gallery_dl/extractor/hitomi.py @@ -26,6 +26,7 @@ class HitomiGalleryExtractor(GalleryExtractor): ("https://hitomi.la/galleries/867789.html", { "pattern": r"https://[a-c]b.hitomi.la/images/./../[0-9a-f]+.jpg", "keyword": "4873ef9a523621fc857b114e0b2820ba4066e9ae", + "options": (("metadata", True),), "count": 16, }), # download test @@ -71,7 +72,7 @@ class HitomiGalleryExtractor(GalleryExtractor): self.info = info = json.loads(page.partition("=")[2]) data = self._data_from_gallery_info(info) - if self.config("metadata", True): + if self.config("metadata", False): data.update(self._data_from_gallery_page(info)) return data