mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 18:53:21 +01:00
[idolcomplex] fix pagination for tags containing ':' (#5171)
This commit is contained in:
parent
5c2a2321a2
commit
6414dc6bca
@ -206,8 +206,8 @@ class IdolcomplexTagExtractor(IdolcomplexExtractor):
|
||||
if not next_url:
|
||||
return
|
||||
|
||||
next_params = text.parse_query(text.unescape(text.unescape(
|
||||
next_url).lstrip("?/")))
|
||||
next_params = text.parse_query(text.unquote(text.unescape(
|
||||
text.unescape(next_url).lstrip("?/"))))
|
||||
|
||||
if "next" in next_params:
|
||||
# stop if the same "next" value occurs twice in a row (#265)
|
||||
|
Loading…
Reference in New Issue
Block a user