Skip to content

Commit

Permalink
[artstation] use '/album/all' view for user portfolios (#1826)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Sep 8, 2021
1 parent 4f5f9ed commit 0e33746
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gallery_dl/extractor/artstation.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ class ArtstationUserExtractor(ArtstationExtractor):

def projects(self):
url = "{}/users/{}/projects.json".format(self.root, self.user)
return self._pagination(url)
params = {"album_id": "all"}
return self._pagination(url, params)


class ArtstationAlbumExtractor(ArtstationExtractor):
Expand Down

0 comments on commit 0e33746

Please sign in to comment.