mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
fixed input validation for indexers
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using FluentValidation.Results;
|
||||
|
||||
namespace NzbDrone.Core.Indexers
|
||||
{
|
||||
public class NullSetting : IIndexerSetting
|
||||
{
|
||||
public static readonly NullSetting Instance = new NullSetting();
|
||||
|
||||
public ValidationResult Validate()
|
||||
{
|
||||
return new ValidationResult();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user