Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/fb81f95ae866b51b67b14458fb4b9e1223f4c5fd
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
1 additions and
18 deletions
@ -31,23 +31,6 @@ namespace Jellyfin.Api.Helpers
: value . Split ( separator ) ;
}
/// <summary>
/// Splits a comma delimited string and parses Guids.
/// </summary>
/// <param name="value">Input value.</param>
/// <returns>Parsed Guids.</returns>
public static Guid [ ] GetGuids ( string value )
{
if ( value = = null )
{
return Array . Empty < Guid > ( ) ;
}
return value . Split ( new [ ] { ',' } , StringSplitOptions . RemoveEmptyEntries )
. Select ( i = > new Guid ( i ) )
. ToArray ( ) ;
}
/// <summary>
/// Checks if the user can update an entry.
/// </summary>
@ -104,7 +87,7 @@ namespace Jellyfin.Api.Helpers
return Array . Empty < Guid > ( ) ;
}
return value . Split ( new [ ] { ',' } , StringSplitOptions . RemoveEmptyEntries )
return Split ( value , ',' , true )
. Select ( i = > new Guid ( i ) )
. ToArray ( ) ;
}