Browse Source

[fix] URL to solidtorrent result page

Reported-by: https://github.com/searx/searx/pull/2786
Michael Ilsaas 4 years ago
parent
commit
0c43cf89ca
1 changed files with 1 additions and 1 deletions
  1. 1 1
      searx/engines/solidtorrents.py

+ 1 - 1
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",