Fixed: Download Client with config Warnings won't be excluded

This commit is contained in:
Mark McDowall
2015-03-16 21:33:34 -07:00
parent 8dccf2efe8
commit 99d9303394
38 changed files with 131 additions and 156 deletions
@@ -1,8 +1,8 @@
using System;
using FluentValidation;
using FluentValidation.Results;
using NzbDrone.Core.Annotations;
using NzbDrone.Core.ThingiProvider;
using NzbDrone.Core.Validation;
namespace NzbDrone.Core.Notifications.NotifyMyAndroid
{
@@ -32,9 +32,9 @@ namespace NzbDrone.Core.Notifications.NotifyMyAndroid
}
}
public ValidationResult Validate()
public NzbDroneValidationResult Validate()
{
return Validator.Validate(this);
return new NzbDroneValidationResult(Validator.Validate(this));
}
}
}