mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-25 15:22:42 +00:00
Fixed: Preferred word can't have a term that is empty or only spaces
Fixes #1361 Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
parent
474023378e
commit
37d294d168
1 changed files with 6 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using FluentValidation;
|
||||
using Lidarr.Http;
|
||||
using NzbDrone.Common.Extensions;
|
||||
|
@ -34,6 +35,11 @@ public ReleaseProfileModule(IReleaseProfileService releaseProfileService, IIndex
|
|||
{
|
||||
context.AddFailure(nameof(ReleaseProfile.IndexerId), "Indexer does not exist");
|
||||
}
|
||||
|
||||
if (restriction.Preferred.Any(p => p.Key.IsNullOrWhiteSpace()))
|
||||
{
|
||||
context.AddFailure("Preferred", "Term cannot be empty or consist of only spaces");
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue