diff --git a/docs/configuration.rst b/docs/configuration.rst index d049bdd1..ef1f9da0 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -1353,7 +1353,7 @@ extractor.kemonoparty.files Type ``list`` of ``strings`` Default - ``["file", "attachments", "inline"]`` + ``["attachments", "file", "inline"]`` Description Determines the type and order of files to be downloaded. diff --git a/gallery_dl/extractor/kemonoparty.py b/gallery_dl/extractor/kemonoparty.py index 6483278a..e7aca890 100644 --- a/gallery_dl/extractor/kemonoparty.py +++ b/gallery_dl/extractor/kemonoparty.py @@ -129,7 +129,7 @@ class KemonopartyExtractor(Extractor): def _build_file_generators(self, filetypes): if filetypes is None: - return (self._file, self._attachments, self._inline) + return (self._attachments, self._file, self._inline) genmap = { "file" : self._file, "attachments": self._attachments,