diff options
author | Michael Ilsaas <mikeri@mikeri.net> | 2021-04-28 23:57:54 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-04-29 10:40:47 +0200 |
commit | 0c43cf89ca3cf0557e82741b0077ca4b6a94fa90 (patch) | |
tree | 9136515c514b27c2cc7669dfa60218f222b11e8e /searx/engines/solidtorrents.py | |
parent | 3282cdca13b3aae093a23a45aad6729c286b1eb4 (diff) | |
download | searxng-0c43cf89ca3cf0557e82741b0077ca4b6a94fa90.tar.gz searxng-0c43cf89ca3cf0557e82741b0077ca4b6a94fa90.zip |
[fix] URL to solidtorrent result page
Reported-by: https://github.com/searx/searx/pull/2786
Diffstat (limited to 'searx/engines/solidtorrents.py')
-rw-r--r-- | searx/engines/solidtorrents.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/solidtorrents.py b/searx/engines/solidtorrents.py index b228a8c8c..4ed6167d0 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", |