Debugging the TEN service

This commit is contained in:
2026-05-15 00:00:57 +09:30
parent 887841b901
commit 1cbd080821
4 changed files with 40 additions and 19 deletions
+2 -2
View File
@@ -125,7 +125,7 @@ class iViewService(BaseService):
# -------------------------
# Season discovery
# -------------------------
def discover_seasons(self, show_title):
def discover_seasons(self, show_title, source_season=None, source_url=None):
slug = self.slugify(show_title)
@@ -161,7 +161,7 @@ class iViewService(BaseService):
# -------------------------
# Episode normalization
# -------------------------
def normalize_episode(self, show_title, entry):
def normalize_episode(self, show_title, entry, season_num):
season = entry.get("season_number") or 1
episode = entry.get("episode_number") or 1