Fixed extra slashes in URLs

This commit is contained in:
unknown
2015-07-24 18:41:24 -06:00
parent de19b79054
commit 738f6732a7
16 changed files with 42 additions and 42 deletions

View File

@@ -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