[idolcomplex] fix pagination (closes #1594)

pull/1633/head
Mike Fährmann 3 years ago
parent f14a36cfc9
commit 78f89d2e61
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -1,5 +1,7 @@
# Changelog
## Unreleased
## 1.17.5 - 2021-05-30
### Additions
- [kemonoparty] add `metadata` option ([#1548](https://github.com/mikf/gallery-dl/issues/1548))

@ -190,7 +190,7 @@ class IdolcomplexTagExtractor(IdolcomplexExtractor):
return
yield from ids
next_qs = text.extract(page, 'next-page-url="/?', '"', pos)[0]
next_qs = text.extract(page, 'next-page-url="?', '"', pos)[0]
next_id = text.parse_query(next_qs).get("next")
# stop if the same "next" parameter occurs twice in a row (#265)

@ -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.17.5"
__version__ = "1.17.6-dev"

Loading…
Cancel
Save