Skip to content

Commit

Permalink
[deviantart] fix folder listings with 'pagination: manual'
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed May 27, 2022
1 parent 7990fe8 commit 4f7fe9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gallery_dl/extractor/deviantart.py
Original file line number Diff line number Diff line change
Expand Up @@ -1311,7 +1311,7 @@ def _pagination(self, endpoint, params,
yield from results

if not data["has_more"] and (
self.strategy != "manual" or not results):
self.strategy != "manual" or not results or not extend):
return

if "next_cursor" in data:
Expand Down

0 comments on commit 4f7fe9b

Please sign in to comment.