summaryrefslogtreecommitdiff
path: root/searx/engines/yacy.py
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2025-11-23 12:33:16 +0100
committerMarkus Heiser <markus.heiser@darmarIT.de>2025-11-25 06:25:45 +0100
commit2313b972a38170df5421839b911f942cb8ea4af3 (patch)
tree02b535b7d2ebd7c8fe037b8e18b16a93895d7d96 /searx/engines/yacy.py
parent989b49335c54b23f274f0b969893a43de5b6c31c (diff)
[fix] engines: base URL can be a list or a string, but its not None!
The code injection and monkey patching examine the names in the module of the engine; if a variable there starts without an underscore and has the value None, then this variable needs to be configured. This outdated concept does not fit engines that may have multiple URLs. At least not as long as the value of the base URL (list) is None. The default is now an empty list instead of None Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/engines/yacy.py')
-rw-r--r--searx/engines/yacy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/yacy.py b/searx/engines/yacy.py
index e8ba1292a..6566dd0f6 100644
--- a/searx/engines/yacy.py
+++ b/searx/engines/yacy.py
@@ -96,7 +96,7 @@ search_type = 'text'
``video`` are not yet implemented (Pull-Requests are welcome).
"""
-base_url: list[str] | str | None = None
+base_url: list[str] | str = []
"""The value is an URL or a list of URLs. In the latter case instance will be
selected randomly.
"""