Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/cbf382625ff1a1485a1deadc2f87194a2611ac63 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Preferred word can't have a term that is empty or only spaces

Fixes 

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
pull/1103/head
Qstick 5 years ago
parent e6250bfe0f
commit cbf382625f

@ -1,4 +1,5 @@
using System.Collections.Generic;
using System.Linq;
using FluentValidation;
using Microsoft.AspNetCore.Mvc;
using NzbDrone.Common.Extensions;
@ -32,6 +33,11 @@ namespace Readarr.Api.V1.Profiles.Release
{
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…
Cancel
Save