From 0f9140b74af5537f8ae4a1de93938bd8871d31a2 Mon Sep 17 00:00:00 2001 From: Dario Date: Tue, 19 Jan 2021 14:29:07 +0100 Subject: [PATCH] Avoid exception for shows that don't have show_lists in DB --- medusa/tv/series.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/medusa/tv/series.py b/medusa/tv/series.py index 0134644266..e1656c627d 100644 --- a/medusa/tv/series.py +++ b/medusa/tv/series.py @@ -1530,7 +1530,7 @@ def _load_from_db(self): # Load external id's from indexer_mappings table. self.externals = load_externals_from_db(self.indexer, self.series_id) - self.show_lists = sql_results[0]['show_lists'] + self.show_lists = sql_results[0]['show_lists'] or 'series' # Get IMDb_info from database main_db_con = db.DBConnection()