Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/c4fe645c31afe209e5c81da70a90603fe3de56ba?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
12 additions and
0 deletions
@ -1,6 +1,8 @@
using System ;
using System ;
using System.Collections.Generic ;
using System.Collections.Generic ;
using FluentValidation.Results ;
using NzbDrone.Api.Mapping ;
using NzbDrone.Api.Mapping ;
using NzbDrone.Common.Extensions ;
using NzbDrone.Core.Restrictions ;
using NzbDrone.Core.Restrictions ;
namespace NzbDrone.Api.Restrictions
namespace NzbDrone.Api.Restrictions
@ -19,6 +21,16 @@ namespace NzbDrone.Api.Restrictions
CreateResource = Create ;
CreateResource = Create ;
UpdateResource = Update ;
UpdateResource = Update ;
DeleteResource = Delete ;
DeleteResource = Delete ;
SharedValidator . Custom ( restriction = >
{
if ( restriction . Ignored . IsNullOrWhiteSpace ( ) & & restriction . Required . IsNullOrWhiteSpace ( ) )
{
return new ValidationFailure ( "" , "Either 'Must contaion' or 'Must not contain' is required" ) ;
}
return null ;
} ) ;
}
}
private RestrictionResource Get ( Int32 id )
private RestrictionResource Get ( Int32 id )