1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2025-01-31 19:51:34 +01:00

[imagechest] fix loading more than 10 images in a gallery (#4469)

This commit is contained in:
Mike Fährmann 2023-12-23 21:58:53 +01:00
parent 6840717745
commit 766316e436
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ class ImagechestGalleryExtractor(GalleryExtractor):
}
def images(self, page):
if " More Files</button>" in page:
if ' load-all">' in page:
url = "{}/p/{}/loadAll".format(self.root, self.gallery_id)
headers = {
"X-Requested-With": "XMLHttpRequest",

View File

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