diff --git a/modules/sonarr.py b/modules/sonarr.py index e6f9f030..a99ad042 100644 --- a/modules/sonarr.py +++ b/modules/sonarr.py @@ -71,6 +71,7 @@ class SonarrAPI: "titleslug": titleslug, "language": self.language, "monitored": True, + "seasonFolder": True, "rootFolderPath": self.root_folder_path, "seasons": [], "images": [{"covertype": "poster", "url": show.poster_path}], diff --git a/modules/tvdb.py b/modules/tvdb.py index bbed87ab..b635d859 100644 --- a/modules/tvdb.py +++ b/modules/tvdb.py @@ -21,7 +21,7 @@ class TVDbObj: if len(results) > 0: self.id = int(results[0]) elif tvdb_url.startswith(TVDb.movie_id_url): - raise Failed(f"TVDb Error: Could not find a TVDb Movie using TVDb Movie ID: {tvdb_url[len(TVDb.series_id_url):]}") + raise Failed(f"TVDb Error: Could not find a TVDb Movie using TVDb Movie ID: {tvdb_url[len(TVDb.movie_id_url):]}") elif tvdb_url.startswith(TVDb.series_id_url): raise Failed(f"TVDb Error: Could not find a TVDb Series using TVDb Series ID: {tvdb_url[len(TVDb.series_id_url):]}") else: