[aryion] update folder mime type list (fixes #945)

This commit is contained in:
Mike Fährmann
2020-08-16 22:30:15 +02:00
parent 688bd046fc
commit b2009ea39e
3 changed files with 10 additions and 2 deletions

View File

@@ -1,5 +1,7 @@
# Changelog # Changelog
## Unreleased
## 1.14.4 - 2020-08-15 ## 1.14.4 - 2020-08-15
### Additions ### Additions
- [blogger] add `search` extractor ([#925](https://github.com/mikf/gallery-dl/issues/925)) - [blogger] add `search` extractor ([#925](https://github.com/mikf/gallery-dl/issues/925))

View File

@@ -68,6 +68,7 @@ class AryionExtractor(Extractor):
# folder # folder
if headers["content-type"] in ( if headers["content-type"] in (
"application/x-folder", "application/x-folder",
"application/x-comic-folder",
"application/x-comic-folder-nomerge", "application/x-comic-folder-nomerge",
): ):
return False return False
@@ -184,11 +185,16 @@ class AryionPostExtractor(AryionExtractor):
"_mtime" : "Sat, 16 Feb 2019 19:30:34 GMT", "_mtime" : "Sat, 16 Feb 2019 19:30:34 GMT",
}, },
}), }),
# folder (#694) # x-folder (#694)
("https://aryion.com/g4/view/588928", { ("https://aryion.com/g4/view/588928", {
"pattern": pattern, "pattern": pattern,
"count": ">= 8", "count": ">= 8",
}), }),
# x-comic-folder (#945)
("https://aryion.com/g4/view/537379", {
"pattern": pattern,
"count": 2,
}),
) )
def posts(self): def posts(self):

View File

@@ -6,4 +6,4 @@
# it under the terms of the GNU General Public License version 2 as # it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation. # published by the Free Software Foundation.
__version__ = "1.14.4" __version__ = "1.14.5-dev"