Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/e152ecc55d4b8509bbdd60a3ca7939c3750e334b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
9 additions and
8 deletions
@ -7,6 +7,7 @@ using NzbDrone.Test.Common;
namespace NzbDrone.Common.Test
{
[TestFixture]
[Timeout(15000)]
public class ServiceProviderTests : TestBase < ServiceProvider >
{
private const string ALWAYS_INSTALLED_SERVICE = "SCardSvr" ; //Smart Card
@ -95,8 +95,8 @@ namespace NzbDrone.Common.EnsureThat
return param ;
}
private static readonly Regex windowsInvalidPathRegex = new Regex ( @"[/*<>""|]" , RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex windowsPathRegex = new Regex ( @"^[a-z ]:\\", RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex windowsInvalidPathRegex = new Regex ( @"[/*<>""|]" , RegexOptions . Compiled ) ;
private static readonly Regex windowsPathRegex = new Regex ( @"^[a-z A-Z ]:\\", RegexOptions . Compiled ) ;
[DebuggerStepThrough]
public static Param < string > IsValidPath ( this Param < string > param )
@ -10,9 +10,9 @@ namespace NzbDrone.Common
return string . Format ( format , formattingArgs ) ;
}
private static readonly Regex InvalidCharRegex = new Regex ( @"[^a-z 0-9\s-]", RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex InvalidSearchCharRegex = new Regex ( @"[^a-z 0-9\s-\.]", RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex CollapseSpace = new Regex ( @"\s+" , RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex InvalidCharRegex = new Regex ( @"[^a-z A-Z 0-9\s-]", RegexOptions . Compiled ) ;
private static readonly Regex InvalidSearchCharRegex = new Regex ( @"[^a-z A-Z 0-9\s-\.]", RegexOptions . Compiled ) ;
private static readonly Regex CollapseSpace = new Regex ( @"\s+" , RegexOptions . Compiled ) ;
public static string ToSlug ( this string phrase )
{
@ -112,13 +112,13 @@ namespace NzbDrone.Core.Indexers
private static readonly Regex [ ] HeaderRegex = new [ ]
{
new Regex ( @"(?:\[.+\]\-\[.+\]\-\[.+\]\-\[)(?<nzbTitle>.+)(?:\]\-.+)" ,
RegexOptions . IgnoreCase | RegexOptions . Compiled ) ,
RegexOptions . IgnoreCase ) ,
new Regex ( @"(?:\[.+\]\W+\[.+\]\W+\[.+\]\W+\"")(?<nzbTitle>.+)(?:\"".+)" ,
RegexOptions . IgnoreCase | RegexOptions . Compiled ) ,
RegexOptions . IgnoreCase ) ,
new Regex ( @"(?:\[)(?<nzbTitle>.+)(?:\]\-.+)" ,
RegexOptions . IgnoreCase | RegexOptions . Compiled ) ,
RegexOptions . IgnoreCase ) ,
} ;
public static string ParseHeader ( string header )