mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
@@ -40,6 +40,7 @@ namespace Jackett.Common.Indexers
|
|||||||
Type = "private";
|
Type = "private";
|
||||||
|
|
||||||
TorznabCaps.SupportsImdbMovieSearch = true;
|
TorznabCaps.SupportsImdbMovieSearch = true;
|
||||||
|
TorznabCaps.SupportsImdbTVSearch = true;
|
||||||
|
|
||||||
AddCategoryMapping(27, TorznabCatType.TVAnime, "Animation/Animes");
|
AddCategoryMapping(27, TorznabCatType.TVAnime, "Animation/Animes");
|
||||||
AddCategoryMapping(90, TorznabCatType.TVAnime, "Animes - 3D");
|
AddCategoryMapping(90, TorznabCatType.TVAnime, "Animes - 3D");
|
||||||
@@ -187,8 +188,7 @@ namespace Jackett.Common.Indexers
|
|||||||
|
|
||||||
foreach (var row in rows.Skip(1))
|
foreach (var row in rows.Skip(1))
|
||||||
{
|
{
|
||||||
var qTags = row.Children[1].QuerySelector("div:has(span[style=\"float: right;\"])");
|
if (row.Children.Length != 9)
|
||||||
if (qTags == null)
|
|
||||||
continue; // not a torrent line
|
continue; // not a torrent line
|
||||||
|
|
||||||
var cat = row.Children[0].QuerySelector("a").GetAttribute("href").Split('=')[1];
|
var cat = row.Children[0].QuerySelector("a").GetAttribute("href").Split('=')[1];
|
||||||
@@ -201,6 +201,7 @@ namespace Jackett.Common.Indexers
|
|||||||
var seeders = row.Children[6].QuerySelector("a").TextContent;
|
var seeders = row.Children[6].QuerySelector("a").TextContent;
|
||||||
var leechers = row.Children[7].QuerySelector("a").TextContent;
|
var leechers = row.Children[7].QuerySelector("a").TextContent;
|
||||||
|
|
||||||
|
var qTags = row.Children[1].QuerySelector("div:has(span[style=\"float: right;\"])");
|
||||||
var dlVolumeFactor = 1.0;
|
var dlVolumeFactor = 1.0;
|
||||||
if (qTags.QuerySelector("img[alt^=\"TORRENT GRATUIT\"]") != null)
|
if (qTags.QuerySelector("img[alt^=\"TORRENT GRATUIT\"]") != null)
|
||||||
dlVolumeFactor = 0.0;
|
dlVolumeFactor = 0.0;
|
||||||
|
Reference in New Issue
Block a user