1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-03 22:57:18 +02:00

Allow 0 as valid value in QualityProfileExistsValidator

(cherry picked from commit 36ca24e55a5eda859047d82855f65c401cc0b30f)
This commit is contained in:
Bogdan 2023-10-25 18:28:57 +03:00
parent b5c0d515ee
commit e6fa14b1e6

View File

@ -16,7 +16,7 @@ public ProfileExistsValidator(IQualityProfileService profileService)
protected override bool IsValid(PropertyValidatorContext context)
{
if (context.PropertyValue == null)
if (context?.PropertyValue == null || (int)context.PropertyValue == 0)
{
return true;
}