mirror of
https://github.com/Jackett/Jackett
synced 2025-02-22 14:20:57 +00:00
RevolutionTT: ignore donation item
This commit is contained in:
parent
90152a7eed
commit
6c90016c0c
1 changed files with 2 additions and 0 deletions
|
@ -245,6 +245,8 @@ namespace Jackett.Indexers
|
|||
foreach (var item in rssDoc.Descendants("item"))
|
||||
{
|
||||
var title = item.Descendants("title").First().Value;
|
||||
if (title.StartsWith("Support YOUR site!"))
|
||||
continue;
|
||||
var description = item.Descendants("description").First().Value;
|
||||
var link = item.Descendants("link").First().Value;
|
||||
var date = item.Descendants("pubDate").First().Value;
|
||||
|
|
Loading…
Reference in a new issue