Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/321d99a59719535ed5f4744a17a62c35d63205d4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
11 additions and
1 deletions
@ -5,6 +5,7 @@ using System;
using System.Collections.Generic ;
using System.Linq ;
using System.Text ;
using NzbDrone.Core.Validation ;
namespace NzbDrone.Core.Music
{
@ -17,7 +18,10 @@ namespace NzbDrone.Core.Music
{
public AddArtistValidator ( RootFolderValidator rootFolderValidator ,
ArtistPathValidator artistPathValidator ,
ArtistAncestorValidator artistAncestorValidator )
ArtistAncestorValidator artistAncestorValidator ,
ProfileExistsValidator profileExistsValidator ,
LanguageProfileExistsValidator languageProfileExistsValidator ,
MetadataProfileExistsValidator metadataProfileExistsValidator )
{
RuleFor ( c = > c . Path ) . Cascade ( CascadeMode . StopOnFirstFailure )
. IsValidPath ( )
@ -25,6 +29,12 @@ namespace NzbDrone.Core.Music
. SetValidator ( artistPathValidator )
. SetValidator ( artistAncestorValidator ) ;
RuleFor ( c = > c . ProfileId ) . SetValidator ( profileExistsValidator ) ;
RuleFor ( c = > c . LanguageProfileId ) . SetValidator ( languageProfileExistsValidator ) ;
RuleFor ( c = > c . MetadataProfileId ) . SetValidator ( metadataProfileExistsValidator ) ;
}
}
}