Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/98858bd2370651cb258c2faf5db50a432d9ee35c
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -59,7 +59,7 @@ namespace NzbDrone.Core.Download.Clients.Nzbget
{
var protocol = settings . UseSsl ? "https" : "http" ;
var url = String . Format ( "{0} //{1}:{2}/jsonrpc",
var url = String . Format ( "{0} : //{1}:{2}/jsonrpc",
protocol ,
settings . Host ,
settings . Port ) ;
@ -85,13 +85,13 @@ namespace NzbDrone.Core.Download.Clients.Nzbget
{
if ( response . ResponseStatus ! = ResponseStatus . Completed )
{
throw new Application Exception( "Unable to connect to NzbGet, please check your settings" ) ;
throw new DownloadClient Exception( "Unable to connect to NzbGet, please check your settings" ) ;
}
var result = Json . Deserialize < JsonError > ( response . Content ) ;
if ( result . Error ! = null )
throw new ApplicationException( result . Error . ToString ( ) ) ;
throw new DownloadClientException( "Error response received from nzbget: {0}" , result . Error . ToString ( ) ) ;
}
}
}