Skip to content

Commit

Permalink
[deviantart] use private access tokens for Journals (fixes #738)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed May 8, 2020
1 parent 0bf0146 commit 65b1cb7
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 @@ -904,7 +904,7 @@ def deviation_content(self, deviation_id):
"""Get extended content of a single Deviation"""
endpoint = "deviation/content"
params = {"deviationid": deviation_id}
return self._call(endpoint, params)
return self._call(endpoint, params, public=False)

def deviation_download(self, deviation_id):
"""Get the original file download (if allowed)"""
Expand Down

0 comments on commit 65b1cb7

Please sign in to comment.