[idolcomplex] fix pagination for tags containing ':' (#5171)

pull/5195/head
Mike Fährmann 7 months ago
parent 5c2a2321a2
commit 6414dc6bca
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -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…
Cancel
Save