mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-31 12:00:16 -07:00
Merge pull request #8054 from hannsen/master
search only when category is supported by plugin
This commit is contained in:
commit
8a590c7472
2 changed files with 4 additions and 4 deletions
|
@ -128,8 +128,8 @@ def run_search(engine_list):
|
||||||
engine = engine()
|
engine = engine()
|
||||||
#avoid exceptions due to invalid category
|
#avoid exceptions due to invalid category
|
||||||
if hasattr(engine, 'supported_categories'):
|
if hasattr(engine, 'supported_categories'):
|
||||||
cat = cat if cat in engine.supported_categories else "all"
|
if cat in engine.supported_categories:
|
||||||
engine.search(what, cat)
|
engine.search(what, cat)
|
||||||
else:
|
else:
|
||||||
engine.search(what)
|
engine.search(what)
|
||||||
return True
|
return True
|
||||||
|
|
|
@ -127,8 +127,8 @@ def run_search(engine_list):
|
||||||
engine = engine()
|
engine = engine()
|
||||||
#avoid exceptions due to invalid category
|
#avoid exceptions due to invalid category
|
||||||
if hasattr(engine, 'supported_categories'):
|
if hasattr(engine, 'supported_categories'):
|
||||||
cat = cat if cat in engine.supported_categories else "all"
|
if cat in engine.supported_categories:
|
||||||
engine.search(what, cat)
|
engine.search(what, cat)
|
||||||
else:
|
else:
|
||||||
engine.search(what)
|
engine.search(what)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue