Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/e868dbf91127b9380d5264fd1cd7bdad326fe267
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
1 additions and
1 deletions
@ -43,7 +43,7 @@ namespace NzbDrone.Core.Organizer
private static readonly Regex TitleRegex = new Regex ( @"(?<tag>\{(?:imdb-|edition-))?\{(?<prefix>[- ._\[(]*)(?<token>(?:[a-z0-9]+)(?:(?<separator>[- ._]+)(?:[a-z0-9]+))?)(?::(?<customFormat>[a-z0-9|+-]+(?<!-)))?(?<suffix>[-} ._)\]]*)\}" ,
RegexOptions . Compiled | RegexOptions . IgnoreCase | RegexOptions . CultureInvariant ) ;
public static readonly Regex MovieTitleRegex = new Regex ( @"(?<token>\{((?:(Movie|Original))(?<separator>[- ._])(Clean)?(Original)?(Title|Filename)(The)?)(?::(?<customFormat>[a-z0-9| ]+))?\})",
public static readonly Regex MovieTitleRegex = new Regex ( @"(?<token>\{((?:(Movie|Original))(?<separator>[- ._])(Clean)?(Original)?(Title|Filename)(The)?)(?::(?<customFormat>[a-z0-9| - ]+))?\})",
RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex FileNameCleanupRegex = new Regex ( @"([- ._])(\1)+" , RegexOptions . Compiled ) ;