Fixing ShowRSS all feed path and node selection (#1328)

This commit is contained in:
chibidev 2017-05-04 13:57:09 +02:00 committed by flightlevel
parent f5fa7b5217
commit a2d9954a1d
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ namespace Jackett.Indexers
{
public class ShowRSS : BaseIndexer, IIndexer
{
private string SearchAllUrl { get { return SiteLink + "feeds/all.rss"; } }
private string SearchAllUrl { get { return SiteLink + "other/all.rss"; } }
new ConfigurationData configData
{
@ -79,7 +79,7 @@ namespace Jackett.Indexers
release.MinimumRatio = 1;
release.MinimumSeedTime = 172800;
serie_title = node.SelectSingleNode(".//*[local-name()='rawtitle']").InnerText;
serie_title = node.SelectSingleNode(".//*[local-name()='raw_title']").InnerText;
release.Title = serie_title;
if ((query.ImdbID == null || !TorznabCaps.SupportsImdbSearch) && !query.MatchQueryStringAND(release.Title))