mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
@@ -57,7 +57,7 @@ namespace Jackett.Common.Indexers
|
|||||||
Type = "private";
|
Type = "private";
|
||||||
|
|
||||||
// incomplete CA chain
|
// incomplete CA chain
|
||||||
wc.AddTrustedCertificate(new Uri(SiteLink).Host, "cbf23ac75b07255ad7548a87567a839d23f31576");
|
wc.AddTrustedCertificate(new Uri(SiteLink).Host, "8612e46b2abd418b6398dbf2382ebcf44b10f378");
|
||||||
|
|
||||||
AddCategoryMapping(1, TorznabCatType.PCGames, "GAMES/PC");
|
AddCategoryMapping(1, TorznabCatType.PCGames, "GAMES/PC");
|
||||||
AddCategoryMapping(3, TorznabCatType.Console, "GAMES/Sonstige");
|
AddCategoryMapping(3, TorznabCatType.Console, "GAMES/Sonstige");
|
||||||
@@ -195,10 +195,10 @@ namespace Jackett.Common.Indexers
|
|||||||
{"strWebAction", "search"},
|
{"strWebAction", "search"},
|
||||||
{"sort", "torrent_added"},
|
{"sort", "torrent_added"},
|
||||||
{"by", "d"},
|
{"by", "d"},
|
||||||
{"type", "0"},
|
{"type", "2"}, // 0 active, 1 inactive, 2 all
|
||||||
{"do_search", "suchen"},
|
{"do_search", "suchen"},
|
||||||
{"time", "0"},
|
{"time", "0"}, // 0 any, 1 1day, 2 1week, 3 30days, 4 90days
|
||||||
{"details", "title"}
|
{"details", "title"} // title, info, descr, all
|
||||||
};
|
};
|
||||||
if (!string.IsNullOrWhiteSpace(searchString))
|
if (!string.IsNullOrWhiteSpace(searchString))
|
||||||
queryCollection.Add("searchstring", searchString);
|
queryCollection.Add("searchstring", searchString);
|
||||||
@@ -237,9 +237,9 @@ namespace Jackett.Common.Indexers
|
|||||||
downloadFactor = 1;
|
downloadFactor = 1;
|
||||||
var title = titleRegexp.Match(qDetailsLink.GetAttribute("onmouseover")).Groups[1].Value;
|
var title = titleRegexp.Match(qDetailsLink.GetAttribute("onmouseover")).Groups[1].Value;
|
||||||
var details = new Uri(SiteLink + qDetailsLink.GetAttribute("href"));
|
var details = new Uri(SiteLink + qDetailsLink.GetAttribute("href"));
|
||||||
var size = ReleaseInfo.GetBytes(qColumn1[1].TextContent);
|
var size = ReleaseInfo.GetBytes(qColumn2[1].TextContent);
|
||||||
var seeders = ParseUtil.CoerceInt(qColumn2[2].TextContent);
|
var seeders = ParseUtil.CoerceInt(qColumn1[3].TextContent);
|
||||||
var leechers = ParseUtil.CoerceInt(qColumn1[3].TextContent);
|
var leechers = ParseUtil.CoerceInt(qColumn2[3].TextContent);
|
||||||
var publishDate = TimeZoneInfo.ConvertTime(dateGerman, germanyTz, TimeZoneInfo.Local);
|
var publishDate = TimeZoneInfo.ConvertTime(dateGerman, germanyTz, TimeZoneInfo.Local);
|
||||||
|
|
||||||
var release = new ReleaseInfo
|
var release = new ReleaseInfo
|
||||||
|
Reference in New Issue
Block a user