mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
Update MediaBrowser.Providers/MediaInfo/AudioFileProber.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
parent
81d642abe3
commit
de91a213a1
@ -259,8 +259,8 @@ namespace MediaBrowser.Providers.MediaInfo
|
||||
}
|
||||
|
||||
_libraryManager.UpdatePeople(audio, people);
|
||||
audio.Artists = audio.Artists != null ? audio.Artists : performers;
|
||||
audio.AlbumArtists = audio.AlbumArtists != null ? audio.AlbumArtists : albumArtists;
|
||||
audio.Artists ??= performers;
|
||||
audio.AlbumArtists ??= albumArtists;
|
||||
}
|
||||
|
||||
audio.Name = string.IsNullOrEmpty(audio.Name) ? tags.Title : audio.Name;
|
||||
|
Loading…
Reference in New Issue
Block a user