From 0c43cf89ca3cf0557e82741b0077ca4b6a94fa90 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 Reported-by: https://github.com/searx/searx/pull/2786 --- 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 b228a8c8..4ed6167d 100644 --- a/searx/engines/solidtorrents.py +++ b/searx/engines/solidtorrents.py @@ -46,7 +46,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",