mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 10:42:34 +01:00
[idolcomplex] fix pagination (closes #1594)
This commit is contained in:
parent
f14a36cfc9
commit
78f89d2e61
@ -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…
Reference in New Issue
Block a user