mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
new: smarter validation for newznab indexer settings
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user