Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/a30ec0eb52ba203bb086ebc79b8a53948b58d875
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
1 deletions
@ -25,6 +25,8 @@ namespace NzbDrone.Core.Test.ParserTests
new object [ ] { Quality . Bluray720p } ,
new object [ ] { Quality . Bluray1080p } ,
new object [ ] { Quality . Bluray2160p } ,
new object [ ] { Quality . Bluray1080pRemux } ,
new object [ ] { Quality . Bluray2160pRemux } ,
} ;
public static object [ ] OtherSourceQualityParserCases =
@ -41,6 +43,8 @@ namespace NzbDrone.Core.Test.ParserTests
new object [ ] { "720p BluRay" , Quality . Bluray720p } ,
new object [ ] { "1080p BluRay" , Quality . Bluray1080p } ,
new object [ ] { "2160p BluRay" , Quality . Bluray2160p } ,
new object [ ] { "1080p Remux" , Quality . Bluray1080pRemux } ,
new object [ ] { "2160p Remux" , Quality . Bluray2160pRemux } ,
} ;
[TestCase("S07E23 .avi ", false)]
@ -64,7 +64,7 @@ namespace NzbDrone.Core.Parser
private static readonly Regex HighDefPdtvRegex = new Regex ( @"hr[-_. ]ws" , RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex RemuxRegex = new Regex ( @" [_. ](?<remux>(?:(BD)[-_. ])?Remux)\b", RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex RemuxRegex = new Regex ( @" (?: [_. ]|\d{4}p-) (?<remux>(?:(BD|UHD )[-_. ]? )?Remux)\b", RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
public static QualityModel ParseQuality ( string name )
{