mirror of
https://github.com/Jackett/Jackett
synced 2025-03-12 07:04:22 +00:00
Don't use https for HD-Torrents (doesn't work on mono)
This commit is contained in:
parent
4b152b438b
commit
b864269aaa
1 changed files with 2 additions and 2 deletions
|
@ -18,10 +18,10 @@ namespace Jackett.Indexers
|
|||
|
||||
public event Action<IndexerInterface, string, Exception> OnResultParsingError;
|
||||
|
||||
const string DefaultUrl = "https://hd-torrents.org";
|
||||
const string DefaultUrl = "http://hd-torrents.org";
|
||||
string BaseUrl = DefaultUrl;
|
||||
static string chromeUserAgent = BrowserUtil.ChromeUserAgent;
|
||||
private string SearchUrl = "https://hd-torrents.org/torrents.php?search={0}&active=1&options=0&category%5B%5D=59&category%5B%5D=60&category%5B%5D=30&category%5B%5D=38&page={1}";
|
||||
private string SearchUrl = DefaultUrl + "/torrents.php?search={0}&active=1&options=0&category%5B%5D=59&category%5B%5D=60&category%5B%5D=30&category%5B%5D=38&page={1}";
|
||||
private static string LoginUrl = DefaultUrl + "/login.php";
|
||||
private static string LoginPostUrl = DefaultUrl + "/login.php?returnto=index.php";
|
||||
private const int MAXPAGES = 3;
|
||||
|
|
Loading…
Add table
Reference in a new issue