[enh] plugins: tor_check: Add more keywords (#4726)
Previously, there was only one usable keyword for the tor_check plugin. Adding more keywords eliminates confusion.
This commit is contained in:
parent
ff60fe635f
commit
bc06b1aece
@ -33,7 +33,7 @@ class SXNGPlugin(Plugin):
|
|||||||
"""Rewrite hostnames, remove results or prioritize them."""
|
"""Rewrite hostnames, remove results or prioritize them."""
|
||||||
|
|
||||||
id = "tor_check"
|
id = "tor_check"
|
||||||
keywords = ["tor-check"]
|
keywords = ["tor-check", "tor_check", "torcheck", "tor", "tor check"]
|
||||||
|
|
||||||
def __init__(self, plg_cfg: "PluginCfg") -> None:
|
def __init__(self, plg_cfg: "PluginCfg") -> None:
|
||||||
super().__init__(plg_cfg)
|
super().__init__(plg_cfg)
|
||||||
@ -53,7 +53,7 @@ class SXNGPlugin(Plugin):
|
|||||||
if search.search_query.pageno > 1:
|
if search.search_query.pageno > 1:
|
||||||
return results
|
return results
|
||||||
|
|
||||||
if search.search_query.query.lower() == "tor-check":
|
if search.search_query.query.lower() in self.keywords:
|
||||||
|
|
||||||
# Request the list of tor exit nodes.
|
# Request the list of tor exit nodes.
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user