mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-03 18:03:37 +00:00
Merge pull request #612 from JackDandy/port_fix_BTN_duplicate_search_params
Port:Fix BTN adding same search parameters multiple times.
This commit is contained in:
commit
7ce409e90d
1 changed files with 2 additions and 1 deletions
|
@ -223,7 +223,8 @@ class BTNProvider(generic.TorrentProvider):
|
||||||
else:
|
else:
|
||||||
whole_season_params['name'] = 'Season ' + str(ep_obj.scene_season)
|
whole_season_params['name'] = 'Season ' + str(ep_obj.scene_season)
|
||||||
|
|
||||||
search_params.append(whole_season_params)
|
if whole_season_params not in search_params:
|
||||||
|
search_params.append(whole_season_params)
|
||||||
|
|
||||||
return search_params
|
return search_params
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue