mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-29 13:58:51 +03:00
search only when category is supported by plugin Closes #8053
This commit is contained in:
parent
84c84160fd
commit
d534973650
2 changed files with 4 additions and 4 deletions
|
@ -128,8 +128,8 @@ def run_search(engine_list):
|
|||
engine = engine()
|
||||
#avoid exceptions due to invalid category
|
||||
if hasattr(engine, 'supported_categories'):
|
||||
cat = cat if cat in engine.supported_categories else "all"
|
||||
engine.search(what, cat)
|
||||
if cat in engine.supported_categories:
|
||||
engine.search(what, cat)
|
||||
else:
|
||||
engine.search(what)
|
||||
return True
|
||||
|
|
|
@ -127,8 +127,8 @@ def run_search(engine_list):
|
|||
engine = engine()
|
||||
#avoid exceptions due to invalid category
|
||||
if hasattr(engine, 'supported_categories'):
|
||||
cat = cat if cat in engine.supported_categories else "all"
|
||||
engine.search(what, cat)
|
||||
if cat in engine.supported_categories:
|
||||
engine.search(what, cat)
|
||||
else:
|
||||
engine.search(what)
|
||||
|
||||
|
|
Loading…
Reference in a new issue