Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/d7eae958b70f9f086a7a46ab24ba28fa27b27ab4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
7 additions and
3 deletions
@ -56,6 +56,7 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("[HorribleSubs] Yowamushi Pedal - 32 [ 480 p ] ", false)]
[TestCase("[CR] Sailor Moon - 004 [ 480 p ] [ 48 CE2D0F ] ", false)]
[TestCase("[Hatsuyuki] Naruto Shippuuden - 363 [ 848 x480 ] [ ADE35E38 ] ", false)]
[TestCase("Muppet.Babies.S03.TVRip.XviD-NOGRP", false)]
public void should_parse_sdtv_quality ( string title , bool proper )
{
ParseAndVerifyQuality ( title , Quality . SDTV , proper ) ;
@ -16,12 +16,13 @@ namespace NzbDrone.Core.Parser
( ? < bluray > BluRay | Blu - Ray | HDDVD | BD ) |
( ? < webdl > WEB [ - _ . ] DL | WEBDL | WebRip | iTunesHD | WebHD ) |
( ? < hdtv > HDTV ) |
( ? < bdrip > BDRi P ) |
( ? < bdrip > BDRi p ) |
( ? < brrip > BRRip ) |
( ? < dvd > DVD | DVDRip | NTSC | PAL | xvidvd ) |
( ? < dsr > WS [ - _ . ] DSR | DSR ) |
( ? < pdtv > PDTV ) |
( ? < sdtv > SDTV )
( ? < sdtv > SDTV ) |
( ? < tvrip > TVRip )
) \ b ",
RegexOptions . Compiled | RegexOptions . IgnoreCase | RegexOptions . IgnorePatternWhitespace ) ;
@ -165,7 +166,8 @@ namespace NzbDrone.Core.Parser
if ( sourceMatch . Groups [ "pdtv" ] . Success | |
sourceMatch . Groups [ "sdtv" ] . Success | |
sourceMatch . Groups [ "dsr" ] . Success )
sourceMatch . Groups [ "dsr" ] . Success | |
sourceMatch . Groups [ "tvrip" ] . Success )
{
if ( HighDefPdtvRegex . IsMatch ( normalizedName ) )
{
@ -177,6 +179,7 @@ namespace NzbDrone.Core.Parser
return result ;
}
//Anime Bluray matching
if ( AnimeBlurayRegex . Match ( normalizedName ) . Success )
{