From de0b735f3a47d9ce7c81e508df4746aac77da00a Mon Sep 17 00:00:00 2001 From: Michael Ilsaas Date: Wed, 28 Apr 2021 23:57:54 +0200 Subject: [PATCH] Fix URL to solidtorrent result page --- searx/engines/solidtorrents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/searx/engines/solidtorrents.py b/searx/engines/solidtorrents.py index 05014918..dad36cc8 100644 --- a/searx/engines/solidtorrents.py +++ b/searx/engines/solidtorrents.py @@ -45,7 +45,7 @@ def response(resp): 'seed': result["swarm"]["seeders"], 'leech': result["swarm"]["leechers"], 'title': result["title"], - 'link': "https://solidtorrents.net/view/" + result["_id"], + 'url': "https://solidtorrents.net/view/" + result["_id"], 'filesize': result["size"], 'magnetlink': result["magnet"], 'template': "torrent.html",