Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/7a1301610a9539a22ec55742472c8df73998bd6b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
1 deletions
@ -157,6 +157,7 @@ namespace NzbDrone.Core.Test
[TestCase("Nikita S02E01 HDTV XviD 2HD", QualityTypes.SDTV, false)]
[TestCase("Gossip Girl S05E11 PROPER HDTV XviD 2HD", QualityTypes.SDTV, true)]
[TestCase("The Jonathan Ross Show S02E08 HDTV x264 FTP", QualityTypes.SDTV, false)]
[TestCase("White.Van.Man.2011.S02E01.WS.PDTV.x264-TLA", QualityTypes.SDTV, false)]
public void quality_parse ( string postTitle , object quality , bool proper )
{
var result = Parser . ParseQuality ( postTitle ) ;
@ -336,7 +336,7 @@ namespace NzbDrone.Core
return result ;
}
if ( ( normalizedName . Contains ( "sdtv" ) | |
if ( ( normalizedName . Contains ( "sdtv" ) | | normalizedName . Contains ( "pdtv" ) | |
( result . QualityType = = QualityTypes . Unknown & & normalizedName . Contains ( "hdtv" ) ) ) & &
! normalizedName . Contains ( "mpeg" ) )
{