mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 09:59:06 -07:00
Update AudioFileProber.cs
This commit is contained in:
parent
ddf8f7d636
commit
5a652360c3
@ -320,8 +320,26 @@ namespace MediaBrowser.Providers.MediaInfo
|
||||
}
|
||||
|
||||
_libraryManager.UpdatePeople(audio, people);
|
||||
audio.Artists ??= performers;
|
||||
audio.AlbumArtists ??= albumArtists;
|
||||
|
||||
if (options.ReplaceAllMetadata && performers.Length != 0)
|
||||
{
|
||||
audio.Artists = performers;
|
||||
}
|
||||
else if (!options.ReplaceAllMetadata
|
||||
&& (audio.Artists is null || audio.Artists.Count == 0))
|
||||
{
|
||||
audio.Artists = performers;
|
||||
}
|
||||
|
||||
if (options.ReplaceAllMetadata && albumArtists.Length != 0)
|
||||
{
|
||||
audio.AlbumArtists = albumArtists;
|
||||
}
|
||||
else if (!options.ReplaceAllMetadata
|
||||
&& (audio.AlbumArtists is null || audio.AlbumArtists.Count == 0))
|
||||
{
|
||||
audio.AlbumArtists = albumArtists;
|
||||
}
|
||||
}
|
||||
|
||||
if (!audio.LockedFields.Contains(MetadataField.Name))
|
||||
|
Loading…
Reference in New Issue
Block a user