Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/531efc345a2bc6ef64a48b83b0458f327081f394
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
20 additions and
0 deletions
@ -688,6 +688,16 @@ namespace MediaBrowser.MediaEncoding.Probing
{
stream . BitDepth = streamInfo . BitsPerRawSample ;
}
if ( string . IsNullOrEmpty ( stream . Title ) )
{
// mp4 missing track title workaround: fall back to handler_name if populated
string handlerName = GetDictionaryValue ( streamInfo . Tags , "handler_name" ) ;
if ( ! string . IsNullOrEmpty ( handlerName ) )
{
stream . Title = handlerName ;
}
}
}
else if ( string . Equals ( streamInfo . CodecType , "subtitle" , StringComparison . OrdinalIgnoreCase ) )
{
@ -696,6 +706,16 @@ namespace MediaBrowser.MediaEncoding.Probing
stream . LocalizedUndefined = _localization . GetLocalizedString ( "Undefined" ) ;
stream . LocalizedDefault = _localization . GetLocalizedString ( "Default" ) ;
stream . LocalizedForced = _localization . GetLocalizedString ( "Forced" ) ;
if ( string . IsNullOrEmpty ( stream . Title ) )
{
// mp4 missing track title workaround: fall back to handler_name if populated and not the default "SubtitleHandler"
string handlerName = GetDictionaryValue ( streamInfo . Tags , "handler_name" ) ;
if ( ! string . IsNullOrEmpty ( handlerName ) & & ! string . Equals ( handlerName , "SubtitleHandler" , StringComparison . OrdinalIgnoreCase ) )
{
stream . Title = handlerName ;
}
}
}
else if ( string . Equals ( streamInfo . CodecType , "video" , StringComparison . OrdinalIgnoreCase ) )
{