Browse Source

Merge pull request #42 from return42/fix-solidtorrent

[fix] URL to solidtorrent result page
Markus Heiser 4 years ago
parent
commit
3c755688ad
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",