new: smarter validation for newznab indexer settings

This commit is contained in:
kayone
2013-12-01 13:33:53 -08:00
parent 53cebdee17
commit be3ec7ddb8
8 changed files with 98 additions and 7 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ namespace NzbDrone.Core.Indexers
{
public abstract class RssParserBase : IParseFeed
{
private readonly Logger _logger;
protected readonly Logger _logger;
protected virtual ReleaseInfo CreateNewReleaseInfo()
{
@@ -27,7 +27,7 @@ namespace NzbDrone.Core.Indexers
_logger = NzbDroneLogger.GetLogger(this);
}
public IEnumerable<ReleaseInfo> Process(string xml, string url)
public virtual IEnumerable<ReleaseInfo> Process(string xml, string url)
{
PreProcess(xml, url);