Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/006dc9202b820e1b692f5bb8cb54d673ba8cd72e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
11 additions and
2 deletions
@ -105,13 +105,22 @@ namespace NzbDrone.Core.Test.MediaFiles.EpisodeImport
}
[Test]
public void should_return_false_if_runtime_greater_than_ than_ minimum( )
public void should_return_false_if_runtime_greater_than_ minimum( )
{
GivenRuntime ( 600 ) ;
ShouldBeFalse ( ) ;
}
[Test]
public void should_return_false_if_runtime_greater_than_webisode_minimum ( )
{
_series . Runtime = 6 ;
GivenRuntime ( 299 ) ;
ShouldBeFalse ( ) ;
}
[Test]
public void should_fall_back_to_file_size_if_mediainfo_dll_not_found_acceptable_size ( )
{
@ -108,7 +108,7 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport
private int GetMinimumAllowedRuntime ( Series series )
{
//Webisodes - 90 seconds
if ( series . Runtime < = 5 )
if ( series . Runtime < = 10 )
{
return 90 ;
}