diff --git a/bazarr/get_movies.py b/bazarr/get_movies.py index 0e3acb11f..01e589aad 100644 --- a/bazarr/get_movies.py +++ b/bazarr/get_movies.py @@ -365,8 +365,14 @@ def get_tags(): except requests.exceptions.RequestException: logging.exception("BAZARR Error trying to get tags from Radarr.") return [] + except requests.exceptions.HTTPError: + logging.exception("BAZARR Exception while trying to get tags from Radarr.") + return [] else: - return tagsDict.json() + try: + return tagsDict.json() + except Exception: + return [] def movieParser(movie, action, tags_dict, movie_default_profile, audio_profiles):