Private GIT

Skip to content
Snippets Groups Projects
Commit 86d5ba92 authored by TagForce's avatar TagForce
Browse files

Fix SeasonPack searchstrings for episode search on multiple ep search

Changed the _doSearch call in generic.py to only use
_get_season_search_strings when search_mode is 'sponly'
parent 2a0c3952
No related branches found
No related tags found
No related merge requests found
......@@ -283,7 +283,7 @@ class GenericProvider:
# mark season searched for season pack searches so we can skip later on
searched_scene_season = epObj.scene_season
if len(episodes) > 1:
if len(episodes) > 1 and search_mode == 'sponly':
# get season search results
for curString in self._get_season_search_strings(epObj):
itemList += self._doSearch(curString, search_mode, len(episodes), epObj=epObj)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment