diff --git a/resources/lib/plex_api/artwork.py b/resources/lib/plex_api/artwork.py index f8b351f8..a5f92842 100644 --- a/resources/lib/plex_api/artwork.py +++ b/resources/lib/plex_api/artwork.py @@ -224,7 +224,7 @@ class Artwork(object): authenticate=False, timeout=15, return_response=True) - if not data.ok: + if data in (None, 401) or not data.ok: LOG.debug('Could not download data from FanartTV') return artworks data = data.json()