Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/2c7a2df3ea9dc5910b4b356a9ee6891597533d3d?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
1 deletions
@ -159,6 +159,9 @@ namespace NzbDrone.Core.Test
[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)]
[TestCase("White.Van.Man.2011.S02E01.WS.PDTV.x264-REPACK-TLA", QualityTypes.SDTV, true)]
[TestCase("WEEDS.S03E01-06.DUAL.XviD.Bluray.AC3-REPACK.-HELLYWOOD.avi", QualityTypes.DVD, true)]
[TestCase("Pawn Stars S04E87 REPACK 720p HDTV x264 aAF", QualityTypes.HDTV, true)]
public void quality_parse ( string postTitle , object quality , bool proper )
{
var result = Parser . ParseQuality ( postTitle ) ;
@ -251,7 +251,7 @@ namespace NzbDrone.Core
name = name . Trim ( ) ;
var normalizedName = NormalizeTitle ( name ) ;
var result = new Quality { QualityType = QualityTypes . Unknown } ;
result . Proper = normalizedName . Contains ( "proper" ) ;
result . Proper = ( normalizedName . Contains ( "proper" ) | | normalizedName . Contains ( "repack" ) ) ;
if ( normalizedName . Contains ( "dvd" ) | | normalizedName . Contains ( "bdrip" ) | | normalizedName . Contains ( "brrip" ) )
{