Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/4081f3efc213dcfa76454930538808c761f3d99a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
2 deletions
@ -42,8 +42,10 @@ namespace Readarr.Api.V1.Config
SharedValidator . RuleFor ( c = > c . UrlBase ) . ValidUrlBase ( ) ;
SharedValidator . RuleFor ( c = > c . InstanceName ) . ContainsReadarr ( ) . When ( c = > c . InstanceName . IsNotNullOrWhiteSpace ( ) ) ;
SharedValidator . RuleFor ( c = > c . Username ) . NotEmpty ( ) . When ( c = > c . AuthenticationMethod ! = AuthenticationType . None ) ;
SharedValidator . RuleFor ( c = > c . Password ) . NotEmpty ( ) . When ( c = > c . AuthenticationMethod ! = AuthenticationType . None ) ;
SharedValidator . RuleFor ( c = > c . Username ) . NotEmpty ( ) . When ( c = > c . AuthenticationMethod = = AuthenticationType . Basic | |
c . AuthenticationMethod = = AuthenticationType . Forms ) ;
SharedValidator . RuleFor ( c = > c . Password ) . NotEmpty ( ) . When ( c = > c . AuthenticationMethod = = AuthenticationType . Basic | |
c . AuthenticationMethod = = AuthenticationType . Forms ) ;
SharedValidator . RuleFor ( c = > c . SslPort ) . ValidPort ( ) . When ( c = > c . EnableSsl ) ;
SharedValidator . RuleFor ( c = > c . SslPort ) . NotEqual ( c = > c . Port ) . When ( c = > c . EnableSsl ) ;