summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarIT.de>2021-04-29 11:56:21 +0000
committerGitHub <noreply@github.com>2021-04-29 11:56:21 +0000
commit3c755688adbe771463b5730046ff9a42f2495c13 (patch)
tree9136515c514b27c2cc7669dfa60218f222b11e8e
parent3282cdca13b3aae093a23a45aad6729c286b1eb4 (diff)
parent0c43cf89ca3cf0557e82741b0077ca4b6a94fa90 (diff)
Merge pull request #42 from return42/fix-solidtorrent
[fix] URL to solidtorrent result page
-rw-r--r--searx/engines/solidtorrents.py2
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",