Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/351f73b520dde4265fa3793072d2a917ae6f076e?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
27 additions and
18 deletions
@ -51,6 +51,7 @@ namespace NzbDrone.Core.Test
var ep = mocker . Resolve < EpisodeProvider > ( ) . GetEpisodesByParseResult ( parseResult ) ;
ep . Should ( ) . HaveCount ( 1 ) ;
parseResult . EpisodeTitle . Should ( ) . Be ( fakeEpisode . Title ) ;
ep . First ( ) . ShouldHave ( ) . AllPropertiesBut ( e = > e . Series ) ;
}
@ -138,6 +139,7 @@ namespace NzbDrone.Core.Test
ep . Should ( ) . HaveCount ( 2 ) ;
db . Fetch < Episode > ( ) . Should ( ) . HaveCount ( 2 ) ;
ep . First ( ) . ShouldHave ( ) . AllPropertiesBut ( e = > e . Series ) ;
parseResult . EpisodeTitle . Should ( ) . Be ( fakeEpisode . Title ) ;
}
[Test]
@ -354,6 +354,8 @@ namespace PetaPoco
// Open a connection (can be nested)
public void OpenSharedConnection ( )
{
using ( MvcMiniProfiler . MiniProfiler . StepStatic ( "OpenSharedConnection" ) )
{
if ( _sharedConnectionDepth = = 0 )
{
@ -366,6 +368,7 @@ namespace PetaPoco
}
_sharedConnectionDepth + + ;
}
}
/// <summary>
/// Close a previously opened connection
@ -137,6 +137,7 @@ namespace NzbDrone.Core.Providers
if ( episodeInfo ! = null )
{
result . Add ( episodeInfo ) ;
parseResult . EpisodeTitle = episodeInfo . Title ;
}
else
{
@ -34,12 +34,14 @@ namespace NzbDrone
#if DEBUG
Attach ( ) ;
# endif
if ( Environment . UserInteractive )
{
try
{
Logger . Info ( "Starting default browser. {0}" , IISController . AppUrl ) ;
Logger . Info ( "Starting default browser. {0}" , IISController . AppUrl ) ;
Process . Start ( IISController . AppUrl ) ;
}
catch ( Exception e )
catch ( Exception e )
{
Logger . ErrorException ( "Failed to open URL in default browser." , e ) ;
}
@ -48,6 +50,7 @@ namespace NzbDrone
Console . ReadLine ( ) ;
}
}
}
catch ( Exception e )
{
AppDomainException ( e ) ;