Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/c9773112271b373e3ab65f43cf9fe04ea70881a7
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
2 deletions
@ -172,11 +172,12 @@ namespace NzbDrone.Core.Parser
string . Empty ,
RegexOptions . IgnoreCase | RegexOptions . Compiled ) ;
private static readonly RegexReplace WebsitePrefixRegex = new RegexReplace ( @"^\[\s*[-a-z]+(\.[a-z]+)+\s*\][- ]*|^www\.[a-z]+\.(?:com|net|org)[ -]*" ,
// Valid TLDs http://data.iana.org/TLD/tlds-alpha-by-domain.txt
private static readonly RegexReplace WebsitePrefixRegex = new RegexReplace ( @"^(?:\[\s*)?(?:www\.)?[-a-z0-9-]{1,256}\.(?:[a-z]{2,6}\.[a-z]{2,6}|xn--[a-z0-9-]{4,}|[a-z]{2,})\b(?:\s*\]|[ -]{2,})[ -]*" ,
string . Empty ,
RegexOptions . IgnoreCase | RegexOptions . Compiled ) ;
private static readonly RegexReplace WebsitePostfixRegex = new RegexReplace ( @" \[\s*[-a-z]+(\.[a-z0-9]+)+\s*\] $",
private static readonly RegexReplace WebsitePostfixRegex = new RegexReplace ( @" (?:\[\s*)?(?:www\.)?[-a-z0-9-]{1,256}\.(?:xn--[a-z0-9-]{4,}|[a-z]{2,6})\b(?:\s*\]) $",
string . Empty ,
RegexOptions . IgnoreCase | RegexOptions . Compiled ) ;