Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/c061d7cec87d3ed9b541dacc59a0de9745775ee1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
18 additions and
4 deletions
@ -195,7 +195,12 @@ namespace NzbDrone.Core.Notifications.Plex.Server
}
catch ( WebException ex )
{
throw new PlexException ( "Unable to connect to Plex Media Server" , ex ) ;
if ( ex . Status = = WebExceptionStatus . TrustFailure )
{
throw new PlexException ( "Unable to connect to Plex Media Server, certificate validation failed." , ex ) ;
}
throw new PlexException ( $"Unable to connect to Plex Media Server, {ex.Message}" , ex ) ;
}
return response . Content ;
@ -8,6 +8,7 @@ using NLog;
using NzbDrone.Common.Cache ;
using NzbDrone.Common.Extensions ;
using NzbDrone.Core.Movies ;
using NzbDrone.Core.Validation ;
namespace NzbDrone.Core.Notifications.Plex.Server
{
@ -192,13 +193,21 @@ namespace NzbDrone.Core.Notifications.Plex.Server
}
catch ( PlexAuthenticationException ex )
{
_logger . Error ( ex , "Unable to connect to Plex Server") ;
_logger . Error ( ex , "Unable to connect to Plex Media Server") ;
return new ValidationFailure ( "AuthToken" , "Invalid authentication token" ) ;
}
catch ( PlexException ex )
{
return new NzbDroneValidationFailure ( "Host" , ex . Message ) ;
}
catch ( Exception ex )
{
_logger . Error ( ex , "Unable to connect to Plex Server" ) ;
return new ValidationFailure ( "Host" , "Unable to connect to Plex Server" ) ;
_logger . Error ( ex , "Unable to connect to Plex Media Server" ) ;
return new NzbDroneValidationFailure ( "Host" , "Unable to connect to Plex Media Server" )
{
DetailedDescription = ex . Message
} ;
}
return null ;