diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2025-02-06 14:44:10 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2025-02-06 14:50:30 +0100 |
| commit | 147bda894e380b066f0d57dd7d3b1cb0974a0307 (patch) | |
| tree | 6faf5dfce7b05d6fb6d7b5d7c278cc59caed83ad /searx/engines/wikidata.py | |
| parent | 4ab7984edde27b36b158f678d83b993ad4126619 (diff) | |
[fix] Internet links disappeared from wikidata side box
Closes: https://github.com/searxng/searxng/issues/4285
Reported and tested by: Popolon
Suggested-by: @dalf
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/engines/wikidata.py')
| -rw-r--r-- | searx/engines/wikidata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/wikidata.py b/searx/engines/wikidata.py index 2d3d477cd..45eef68d1 100644 --- a/searx/engines/wikidata.py +++ b/searx/engines/wikidata.py @@ -641,7 +641,7 @@ class WDURLAttribute(WDAttribute): return get_external_url(url_id, value) if self.url_path_prefix: - [account, domain] = value.split('@') + [account, domain] = value.split('@', 1) return f"https://{domain}{self.url_path_prefix}{account}" return value |