mirror of
https://github.com/Sonarr/Sonarr
synced 2026-05-02 01:51:23 +02:00
Replaced ValidationFailure with NzbDroneValidationFailure
This commit is contained in:
parent
174b00f188
commit
46ff40a97e
1 changed files with 1 additions and 1 deletions
|
|
@ -399,7 +399,7 @@ protected ValidationFailure ValidateProxiesVersion()
|
|||
|
||||
if (apiInfo.MinVersion > expectedVersion.Version || apiInfo.MaxVersion < expectedVersion.Version)
|
||||
{
|
||||
return new ValidationFailure(string.Empty, $"{apiInfo.Name} API version not supported, should be at least {expectedVersion.Version}. It supports from {apiInfo.MinVersion} to {apiInfo.MaxVersion}");
|
||||
return new NzbDroneValidationFailure(string.Empty, $"{apiInfo.Name} API version not supported, should be at least {expectedVersion.Version}. It supports from {apiInfo.MinVersion} to {apiInfo.MaxVersion}");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue