From 598c0f2af20408da8530c1c63e830350093b0ecb Mon Sep 17 00:00:00 2001 From: TylerCG <117808427+TylerCG@users.noreply.github.com> Date: Mon, 12 May 2025 18:21:44 -0400 Subject: [PATCH] Update main.py --- app/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index 5dfad07..292f208 100644 --- a/app/main.py +++ b/app/main.py @@ -109,8 +109,7 @@ async def get_show_data(show: str): for item in cached_data: if show == item["SHOW"] or show == item["LINK"]: - if "SEASONS" not in item: - item['SEASONS'] = download.grab.season(item['URL']) + item['SEASONS'] = download.grab.season(item['URL']) return item return None