mirror of https://github.com/Jackett/Jackett
Demonoid: ignore more ads
This commit is contained in:
parent
5501d282de
commit
9385218c9d
|
@ -106,7 +106,7 @@ namespace Jackett.Indexers
|
|||
{
|
||||
// ex: "Monday, Jun 01, 2015", "Monday, Aug 03, 2015"
|
||||
var dateStr = rowA.Cq().Text().Trim().Replace("Added on ", "");
|
||||
if (string.IsNullOrWhiteSpace(dateStr) || dateStr == "Sponsored links") // ignore ads
|
||||
if (string.IsNullOrWhiteSpace(dateStr) || dateStr == "Sponsored links" || dateStr.StartsWith("!function")) // ignore ads
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue