1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

Absolute release group parsing fix for custom filenames

This commit is contained in:
Mark McDowall
2014-11-29 11:17:20 -08:00
parent 7f640caa22
commit af5096f9af
4 changed files with 16 additions and 4 deletions
@@ -139,7 +139,7 @@ namespace NzbDrone.Api.Config
if (validationFailures.Any())
{
throw new ValidationException(validationFailures.ToArray());
throw new ValidationException(validationFailures.DistinctBy(v => v.PropertyName).ToArray());
}
}
}