Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/d659b9b9abd156ca1202eddb491a2c024cd9544d/Emby.Naming/TV/SeriesPathParser.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
using Emby.Naming.Common ;
namespace Emby.Naming.TV
{
/// <summary>
/// Used to parse information about series from paths containing more information that only the series name.
/// Uses the same regular expressions as the EpisodePathParser but have different success criteria.
/// </summary>
public static class SeriesPathParser
{
/// <summary>
/// Parses information about series from path.
/// </summary>
/// <param name="options"><see cref="NamingOptions"/> object containing EpisodeExpressions and MultipleEpisodeExpressions.</param>
/// <param name="path">Path.</param>
/// <returns>Returns <see cref="SeriesPathParserResult"/> object.</returns>
public static SeriesPathParserResult Parse ( NamingOptions options , string path )
{
SeriesPathParserResult ? result = null ;
foreach ( var expression in options . EpisodeExpressions )
{
var currentResult = Parse ( path , expression ) ;
if ( currentResult . Success )
{
result = currentResult ;
break ;
}
}
if ( result ! = null )
{
if ( ! string . IsNullOrEmpty ( result . SeriesName ) )
{
result . SeriesName = result . SeriesName . Trim ( ' ' , '_' , '.' , '-' ) ;
}
}
return result ? ? new SeriesPathParserResult ( ) ;
}
private static SeriesPathParserResult Parse ( string name , EpisodeExpression expression )
{
var result = new SeriesPathParserResult ( ) ;
var match = expression . Regex . Match ( name ) ;
if ( match . Success & & match . Groups . Count > = 3 )
{
if ( expression . IsNamed )
{
result . SeriesName = match . Groups [ "seriesname" ] . Value ;
result . Success = ! string . IsNullOrEmpty ( result . SeriesName ) & & ! match . Groups [ "seasonnumber" ] . ValueSpan . IsEmpty ;
}
}
return result ;
}
}
}