Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/e0920981016bd10b15e45ce27d5e6af8c8bab997?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
4 deletions
@ -644,16 +644,16 @@ namespace NzbDrone.Core.Indexers.Definitions
private static int? ParseSeasonFromTitles ( IReadOnlyCollection < string > titles )
{
var advancedSeasonRegex = new Regex ( @" (\d+)(st|nd|rd|th) Season", RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
var advancedSeasonRegex = new Regex ( @" \b (?:(?<season> \d+)(?: st|nd|rd|th) Season|Season (?<season>\d+))\b ", RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
var seasonCharactersRegex = new Regex ( @"(I{2,})$" , RegexOptions . Compiled ) ;
var seasonNumberRegex = new Regex ( @"\b(? :S)?([2-9])$", RegexOptions . Compiled ) ;
var seasonNumberRegex = new Regex ( @"\b(? <!Part[- ._])(? :S)?(?<season> [2-9])$", RegexOptions . Compiled ) ;
foreach ( var title in titles )
{
var advancedSeasonRegexMatch = advancedSeasonRegex . Match ( title ) ;
if ( advancedSeasonRegexMatch . Success )
{
return ParseUtil . CoerceInt ( advancedSeasonRegexMatch . Groups [ 1 ] . Value ) ;
return ParseUtil . CoerceInt ( advancedSeasonRegexMatch . Groups [ "season" ] . Value ) ;
}
var seasonCharactersRegexMatch = seasonCharactersRegex . Match ( title ) ;
@ -665,7 +665,7 @@ namespace NzbDrone.Core.Indexers.Definitions
var seasonNumberRegexMatch = seasonNumberRegex . Match ( title ) ;
if ( seasonNumberRegexMatch . Success )
{
return ParseUtil . CoerceInt ( seasonNumberRegexMatch . Groups [ 1 ] . Value ) ;
return ParseUtil . CoerceInt ( seasonNumberRegexMatch . Groups [ "season" ] . Value ) ;
}
}