diff --git a/app/main.py b/app/main.py index 292f208..5dfad07 100644 --- a/app/main.py +++ b/app/main.py @@ -109,7 +109,8 @@ async def get_show_data(show: str): for item in cached_data: if show == item["SHOW"] or show == item["LINK"]: - item['SEASONS'] = download.grab.season(item['URL']) + if "SEASONS" not in item: + item['SEASONS'] = download.grab.season(item['URL']) return item return None