Browse Source

Merge branch 'feature/FixSearchParam' into develop

tags/release_0.25.1
JackDandy 5 years ago
parent
commit
22b2082d4e
  1. 1
      CHANGES.md
  2. 11
      sickbeard/search.py

1
CHANGES.md

@ -87,6 +87,7 @@
* Change improve performance of History new
* Fix initialise history_tab_limit during restart loading
* Fix removing old backup db files
* Fix search param
### 0.21.15 (2020-11-09 14:10:00 UTC)

11
sickbeard/search.py

@ -819,12 +819,11 @@ def search_providers(
found_results[provider_id] = {}
search_threads.append(threading.Thread(target=_search_provider_thread,
kwargs={'cur_provider': cur_provider,
'provider_results': found_results[provider_id],
'show_obj': show_obj,
'ep_obj_list': ep_obj_list,
'manual_search': manual_search,
'try_other_searches': try_other_searches},
kwargs=dict(provider=cur_provider,
provider_results=found_results[provider_id],
show_obj=show_obj, ep_obj_list=ep_obj_list,
manual_search=manual_search,
try_other_searches=try_other_searches),
name='%s :: [%s]' % (orig_thread_name, cur_provider.name)))
# start the provider search thread

Loading…
Cancel
Save