mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
"Fix" ShowRSS category handling
This commit is contained in:
@@ -86,8 +86,11 @@ namespace Jackett.Indexers
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
release.Comments = new Uri(node.SelectSingleNode("link").InnerText);
|
release.Comments = new Uri(node.SelectSingleNode("link").InnerText);
|
||||||
int category = 0;
|
|
||||||
int.TryParse(node.SelectSingleNode("title").InnerText, out category);
|
// Try to guess the category... I'm not proud of myself...
|
||||||
|
int category = 5030;
|
||||||
|
if (serie_title.Contains("720p"))
|
||||||
|
category = 5040;
|
||||||
release.Category = new List<int> { category };
|
release.Category = new List<int> { category };
|
||||||
var test = node.SelectSingleNode("enclosure");
|
var test = node.SelectSingleNode("enclosure");
|
||||||
release.Guid = new Uri(test.Attributes["url"].Value);
|
release.Guid = new Uri(test.Attributes["url"].Value);
|
||||||
|
Reference in New Issue
Block a user