Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/31d472a0a0c2e7f2da50f9a4bfafd4de68ad524a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
11 additions and
11 deletions
@ -124,17 +124,10 @@ namespace NzbDrone.Core.Test.ParserTests
ExceptionVerification . IgnoreWarns ( ) ;
}
[Test]
[Ignore]
public void unparsable_title_should_report_title ( )
[TestCase("[DmonHiro] The Severing Crime Edge - Cut 02 - Portrait Of Heresy [ BD , 720 p ] [ BE36E9E0 ] ")]
public void unparsable_title_should_log_warn_and_return_null ( string title )
{
const string TITLE = "SOMETHING 12345" ;
Parser . Parser . ParseTitle ( TITLE ) . Should ( ) . BeNull ( ) ;
MockedRestProvider . Verify ( c = > c . PostData ( It . IsAny < string > ( ) , It . Is < ParseErrorReport > ( r = > r . Title = = TITLE ) ) , Times . Once ( ) ) ;
ExceptionVerification . IgnoreWarns ( ) ;
Parser . Parser . ParseTitle ( title ) . Should ( ) . BeNull ( ) ;
}
//[Timeout(1000)]
@ -184,7 +184,14 @@ namespace NzbDrone.Core.Parser
{
var first = Convert . ToInt32 ( episodeCaptures . First ( ) . Value ) ;
var last = Convert . ToInt32 ( episodeCaptures . Last ( ) . Value ) ;
result . EpisodeNumbers = Enumerable . Range ( first , last - first + 1 ) . ToArray ( ) ;
if ( first > last )
{
return null ;
}
var count = last - first + 1 ;
result . EpisodeNumbers = Enumerable . Range ( first , count ) . ToArray ( ) ;
}
else
{