1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-23 11:12:40 +01:00

[deviantart] fix original image downloads

This commit is contained in:
Mike Fährmann 2018-11-10 19:16:10 +01:00
parent 9e12e073ab
commit 7e2d6bcd62
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -69,8 +69,7 @@ class DeviantartExtractor(Extractor):
if "content" in deviation: if "content" in deviation:
content = deviation["content"] content = deviation["content"]
if (self.original and deviation["is_downloadable"] and if self.original and deviation["is_downloadable"]:
content["filesize"] != deviation["download_filesize"]):
self._update_content(deviation, content) self._update_content(deviation, content)
yield self.commit(deviation, content) yield self.commit(deviation, content)