diff options
Diffstat (limited to 'gallery_dl/extractor/scrolller.py')
| -rw-r--r-- | gallery_dl/extractor/scrolller.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gallery_dl/extractor/scrolller.py b/gallery_dl/extractor/scrolller.py index 9f9f0c4..c818c98 100644 --- a/gallery_dl/extractor/scrolller.py +++ b/gallery_dl/extractor/scrolller.py @@ -32,7 +32,12 @@ class ScrolllerExtractor(Extractor): for post in self.posts(): - src = max(post["mediaSources"], key=self._sort_key) + media_sources = post.get("mediaSources") + if not media_sources: + self.log.warning("%s: No media files", post.get("id")) + continue + + src = max(media_sources, key=self._sort_key) post.update(src) url = src["url"] text.nameext_from_url(url, post) |
