mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-17 15:43:28 +02:00
Include show year in season search query
This commit is contained in:
committed by
GitHub
parent
2674d8e018
commit
21495653d2
@@ -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 = []
|
||||
|
||||
Reference in New Issue
Block a user