Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/6d665aeb21c431424fe878b8eea773596f7fb5c7?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
2 deletions
@ -83,7 +83,7 @@ namespace NzbDrone.Core.DecisionEngine
{
if ( parsedEpisodeInfo . Quality . HardcodedSubs . IsNotNullOrWhiteSpace ( ) )
{
remoteEpisode . DownloadAllowed = fals e;
remoteEpisode . DownloadAllowed = tru e;
decision = new DownloadDecision ( remoteEpisode , new Rejection ( "Hardcoded subs found: " + parsedEpisodeInfo . Quality . HardcodedSubs ) ) ;
}
else
@ -28,7 +28,7 @@ namespace NzbDrone.Core.Parser
) \ b ",
RegexOptions . Compiled | RegexOptions . IgnoreCase | RegexOptions . IgnorePatternWhitespace ) ;
private static readonly Regex HardcodedSubsRegex = new Regex ( @"\b(?<hcsub>(\w+SUB) )|(?<hc>(HC))\b", RegexOptions . Compiled | RegexOptions . IgnoreCase | RegexOptions . IgnorePatternWhitespace ) ;
private static readonly Regex HardcodedSubsRegex = new Regex ( @"\b(?<hcsub>(\w+SUB) \b )|(?<hc>(HC))\b", RegexOptions . Compiled | RegexOptions . IgnoreCase | RegexOptions . IgnorePatternWhitespace ) ;
private static readonly Regex RawHDRegex = new Regex ( @"\b(?<rawhd>RawHD|1080i[-_. ]HDTV|Raw[-_. ]HD|MPEG[-_. ]?2)\b" ,
RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;