Use rss-download for omg RSS feed

This commit is contained in:
Mark McDowall 2015-01-21 23:00:05 -08:00
parent a11d118e32
commit 313e48be61
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,7 @@ namespace NzbDrone.Core.Indexers.Omgwtfnzbs
public OmgwtfnzbsRequestGenerator()
{
BaseUrl = "https://rss.omgwtfnzbs.org/rss-search.php";
BaseUrl = "https://rss.omgwtfnzbs.org/rss-download.php";
}
public virtual IList<IEnumerable<IndexerRequest>> GetRecentRequests()
@ -96,6 +96,7 @@ namespace NzbDrone.Core.Indexers.Omgwtfnzbs
if (query.IsNotNullOrWhiteSpace())
{
url = url.Replace("rss-download.php", "rss-search.php");
url.AppendFormat("&search={0}", query);
}