Merge pull request #342 from maxdorninger/maxdorninger-patch-1

Include show year in season search query
This commit is contained in:
Maximilian Dorninger
2026-01-04 14:35:05 +01:00
committed by GitHub

View File

@@ -76,7 +76,7 @@ class IndexerService:
return results
def search_season(self, show: Show, season_number: int):
query = f"{show.name} S{season_number:02d}"
query = f"{show.name} {show.year} S{season_number:02d}"
query = remove_special_chars_and_parentheses(query)
results = []