Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/a16e46cf38fe66ea0bf7241923b7da529e3afa52
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
13 additions and
1 deletions
@ -79,7 +79,6 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("the.shield.1x13.circles.ws.xvidvd-tns", false)]
[TestCase("the_x-files.9x18.sunshine_days.ac3.ws_dvdrip_xvid-fov.avi", false)]
[TestCase("[FroZen] Miyuki - 23 [ DVD ] [ 7F 6170E6 ] ", false)]
[TestCase("Hannibal.S01E05.576p.BluRay.DD5.1.x264-HiSD", false)]
[TestCase("Hannibal.S01E05.480p.BluRay.DD5.1.x264-HiSD", false)]
[TestCase("Heidi Girl of the Alps (BD)(640x480(RAW) (BATCH 1) (1-13)", false)]
[TestCase("[Doki] Clannad - 02 ( 848 x480 XviD BD MP3 ) [ 95360783 ] ", false)]
@ -215,6 +214,13 @@ namespace NzbDrone.Core.Test.ParserTests
ParseAndVerifyQuality ( title , Quality . Bluray1080p , proper ) ;
}
[TestCase("Movie.Name.2004.576p.BDRip.x264-HANDJOB")]
[TestCase("Hannibal.S01E05.576p.BluRay.DD5.1.x264-HiSD")]
public void should_parse_bluray576p_quality ( string title )
{
ParseAndVerifyQuality ( title , Quality . Bluray576p , false ) ;
}
//[TestCase("POI S02E11 1080i HDTV DD5.1 MPEG2-TrollHD", false)]
//[TestCase("How I Met Your Mother S01E18 Nothing Good Happens After 2 A.M. 720p HDTV DD5.1 MPEG2-TrollHD", false)]
//[TestCase("The Voice S01E11 The Finals 1080i HDTV DD5.1 MPEG2-TrollHD", false)]
@ -215,6 +215,12 @@ namespace NzbDrone.Core.Parser
case Resolution . R1080p :
result . Quality = Quality . Bluray1080p ;
return result ;
case Resolution . R576p :
result . Quality = Quality . Bluray576p ;
return result ;
case Resolution . R480P :
result . Quality = Quality . Bluray480p ;
return result ;
default :
result . Quality = Quality . DVD ;
return result ;