Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/da1210c6a662db0ebbe70aca09cc9cbdfaeb1fcd
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
33 additions and
10 deletions
@ -207,7 +207,7 @@ function FormInputGroup(props) {
key = { index }
text = { error . message }
link = { error . link }
linkT ooltip= { error . detailedMessage }
t ooltip= { error . detailedMessage }
isError = { true }
isCheckInput = { checkInput }
/ >
@ -222,7 +222,7 @@ function FormInputGroup(props) {
key = { index }
text = { warning . message }
link = { warning . link }
linkT ooltip= { warning . detailedMessage }
t ooltip= { warning . detailedMessage }
isWarning = { true }
isCheckInput = { checkInput }
/ >
@ -37,3 +37,7 @@
margin-left : 5px ;
}
. details {
margin-left : 5px ;
}
@ -11,7 +11,7 @@ function FormInputHelpText(props) {
className ,
text ,
link ,
linkT ooltip,
t ooltip,
isError ,
isWarning ,
isCheckInput
@ -28,16 +28,27 @@ function FormInputHelpText(props) {
{ text }
{
! ! link &&
link ?
< Link
className = { styles . link }
to = { link }
title = { linkT ooltip}
title = { t ooltip}
>
< Icon
name = { icons . EXTERNAL _LINK }
/ >
< / L i n k >
< / L i n k > :
null
}
{
! link && tooltip ?
< Icon
containerClassName = { styles . details }
name = { icons . INFO }
title = { tooltip }
/ > :
null
}
< / d i v >
) ;
@ -47,7 +58,7 @@ FormInputHelpText.propTypes = {
className : PropTypes . string . isRequired ,
text : PropTypes . string . isRequired ,
link : PropTypes . string ,
linkT ooltip: PropTypes . string ,
t ooltip: PropTypes . string ,
isError : PropTypes . bool ,
isWarning : PropTypes . bool ,
isCheckInput : PropTypes . bool
@ -378,7 +378,10 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
catch ( Exception ex )
{
_logger . Error ( ex , ex . Message ) ;
return new ValidationFailure ( "Host" , "Unable to connect to SABnzbd" ) ;
return new NzbDroneValidationFailure ( "Host" , "Unable to connect to SABnzbd" )
{
DetailedDescription = ex . Message
} ;
}
}
@ -186,11 +186,16 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
}
catch ( HttpException ex )
{
throw new DownloadClientException ( "Unable to connect to SABnzbd, please check your settings", ex ) ;
throw new DownloadClientException ( "Unable to connect to SABnzbd, {0}", ex , ex . Message ) ;
}
catch ( WebException ex )
{
throw new DownloadClientUnavailableException ( "Unable to connect to SABnzbd, please check your settings" , ex ) ;
if ( ex . Status = = WebExceptionStatus . TrustFailure )
{
throw new DownloadClientUnavailableException ( "Unable to connect to SABnzbd, certificate validation failed." , ex ) ;
}
throw new DownloadClientUnavailableException ( "Unable to connect to SABnzbd, {0}" , ex , ex . Message ) ;
}
CheckForError ( response ) ;