diff --git a/tvmaze.bundle/Contents/Code/__init__.py b/tvmaze.bundle/Contents/Code/__init__.py index 4f5f039..0550631 100644 --- a/tvmaze.bundle/Contents/Code/__init__.py +++ b/tvmaze.bundle/Contents/Code/__init__.py @@ -210,7 +210,7 @@ def update(self, metadata, media, lang, force): # Download the episode thumbnail valid_names = list() - if ep.image.get('original'): + if ep.image is not None and ep.image.get('original'): thumb_url = ep.image.get('original') if thumb_url is not None and len(thumb_url) > 0: # Check that the thumb doesn't already exist before downloading it