mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-23 21:47:14 -04:00
Update MediaBrowser.Providers/MediaInfo/AudioFileProber.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
parent
81d642abe3
commit
de91a213a1
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue