Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/3edd6ab767e2a3ae30a740ae851bc4b96e12afc6?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
2 deletions
@ -389,9 +389,10 @@ namespace MediaBrowser.Model.Dlna
/// <param name="type">The <see cref="DlnaProfileType"/>.</param>
/// <param name="playProfile">The <see cref="DirectPlayProfile"/> object to get the video stream from.</param>
/// <returns>The normalized input container.</returns>
public static string NormalizeMediaSourceFormatIntoSingleContainer ( string inputContainer , DeviceProfile ? profile , DlnaProfileType type , DirectPlayProfile ? playProfile = null )
public static string ? NormalizeMediaSourceFormatIntoSingleContainer ( string inputContainer , DeviceProfile ? profile , DlnaProfileType type , DirectPlayProfile ? playProfile = null )
{
if ( profile is null | | ! inputContainer . Contains ( ',' , StringComparison . OrdinalIgnoreCase ) )
// If the source is Live TV the inputContainer will be null until the mediasource is probed on first access
if ( profile is null | | string . IsNullOrEmpty ( inputContainer ) | | ! inputContainer . Contains ( ',' , StringComparison . OrdinalIgnoreCase ) )
{
return inputContainer ;
}