mirror of
https://github.com/Jackett/Jackett.git
synced 2025-10-02 16:42:01 +02:00
Fixed extra slashes in URLs
This commit is contained in:
@@ -37,10 +37,10 @@ namespace Jackett.Indexers
|
||||
manager: i,
|
||||
logger: l)
|
||||
{
|
||||
LoginUrl = SiteLink + "/login.php";
|
||||
SearchUrl = SiteLink + "/ajax.php?action=browse&searchstr=";
|
||||
DownloadUrl = SiteLink + "/torrents.php?action=download&id=";
|
||||
GuidUrl = SiteLink + "/torrents.php?torrentid=";
|
||||
LoginUrl = SiteLink + "login.php";
|
||||
SearchUrl = SiteLink + "ajax.php?action=browse&searchstr=";
|
||||
DownloadUrl = SiteLink + "torrents.php?action=download&id=";
|
||||
GuidUrl = SiteLink + "torrents.php?torrentid=";
|
||||
|
||||
cookies = new CookieContainer();
|
||||
handler = new HttpClientHandler
|
||||
|
Reference in New Issue
Block a user