Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/ab1f5db146557187e7605bfacc13d4e56c1929d3
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
13 additions and
1 deletions
@ -440,7 +440,6 @@ namespace MediaBrowser.MediaEncoding.Probing
}
var composer = FFProbeHelpers . GetDictionaryValue ( tags , "composer" ) ;
if ( ! string . IsNullOrWhiteSpace ( composer ) )
{
foreach ( var person in Split ( composer , false ) )
@ -449,6 +448,15 @@ namespace MediaBrowser.MediaEncoding.Probing
}
}
var conductor = FFProbeHelpers . GetDictionaryValue ( tags , "conductor" ) ;
if ( ! string . IsNullOrWhiteSpace ( conductor ) )
{
foreach ( var person in Split ( conductor , false ) )
{
audio . People . Add ( new BaseItemPerson { Name = person , Type = PersonType . Conductor } ) ;
}
}
audio . Album = FFProbeHelpers . GetDictionaryValue ( tags , "album" ) ;
var artists = FFProbeHelpers . GetDictionaryValue ( tags , "artists" ) ;
@ -30,5 +30,9 @@ namespace MediaBrowser.Model.Entities
/// The producer
/// </summary>
public const string Producer = "Producer" ;
/// <summary>
/// The conductor
/// </summary>
public const string Conductor = "Conductor" ;
}
}