Fixed: (ImmortalSeed/XSpeeds) Sitewide Freeleech

This commit is contained in:
Bogdan
2023-02-04 14:39:53 +02:00
parent 5da02c49eb
commit 6c35c3fc6f
2 changed files with 2 additions and 2 deletions

View File

@@ -311,7 +311,7 @@ namespace NzbDrone.Core.Indexers.Definitions
release.PublishDate = DateTime.ParseExact(dateAddedMatch.Value, "yyyy-MM-dd hh:mm tt", CultureInfo.InvariantCulture);
}
if (row.QuerySelector("img[title^=\"Free Torrent\"]") != null)
if (row.QuerySelector("img[title^=\"Free Torrent\"], img[title^=\"Sitewide Free Torrent\"]") != null)
{
release.DownloadVolumeFactor = 0;
}

View File

@@ -311,7 +311,7 @@ public class XSpeedsParser : IParseIndexerResponse
release.PublishDate = DateTime.ParseExact(dateAddedMatch.Value, "dd-MM-yyyy HH:mm", CultureInfo.InvariantCulture);
}
if (row.QuerySelector("img[title^=\"Free Torrent\"]") != null)
if (row.QuerySelector("img[title^=\"Free Torrent\"], img[title^=\"Sitewide Free Torrent\"]") != null)
{
release.DownloadVolumeFactor = 0;
}