diff options
author | Justas Zabulionis <38244149+jazzzooo@users.noreply.github.com> | 2023-09-14 00:33:46 -0700 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarIT.de> | 2023-09-14 18:03:21 +0200 |
commit | 92d39de410a75c3060e1f1c535ba97799af92dd0 (patch) | |
tree | 02271f358e10329cdcdfe0bc0b919b37bbff525d | |
parent | cf8a6cf6dbf4082b6cd98e465ea73eba7ee0986e (diff) | |
download | searxng-92d39de410a75c3060e1f1c535ba97799af92dd0.tar.gz searxng-92d39de410a75c3060e1f1c535ba97799af92dd0.zip |
[fix] solidtorrents redirects
-rw-r--r-- | searx/engines/solidtorrents.py | 4 | ||||
-rw-r--r-- | searx/settings.yml | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/searx/engines/solidtorrents.py b/searx/engines/solidtorrents.py index b933b568c..b853d9e25 100644 --- a/searx/engines/solidtorrents.py +++ b/searx/engines/solidtorrents.py @@ -18,7 +18,7 @@ from searx.utils import ( ) about = { - "website": 'https://www.solidtorrents.net/', + "website": 'https://www.solidtorrents.to/', "wikidata_id": None, "official_api_documentation": None, "use_official_api": False, @@ -30,7 +30,7 @@ categories = ['files'] paging = True # base_url can be overwritten by a list of URLs in the settings.yml -base_url = 'https://solidtorrents.net' +base_url = 'https://solidtorrents.to' def request(query, params): diff --git a/searx/settings.yml b/searx/settings.yml index 0608aa095..028a9fe2f 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -1421,8 +1421,6 @@ engines: shortcut: solid timeout: 4.0 base_url: - - https://solidtorrents.net - - https://solidtorrents.eu - https://solidtorrents.to - https://bitsearch.to |