|
|
@ -259,8 +259,8 @@ namespace MediaBrowser.Providers.MediaInfo
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
_libraryManager.UpdatePeople(audio, people);
|
|
|
|
_libraryManager.UpdatePeople(audio, people);
|
|
|
|
audio.Artists = audio.Artists != null ? audio.Artists : performers;
|
|
|
|
audio.Artists ??= performers;
|
|
|
|
audio.AlbumArtists = audio.AlbumArtists != null ? audio.AlbumArtists : albumArtists;
|
|
|
|
audio.AlbumArtists ??= albumArtists;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
audio.Name = string.IsNullOrEmpty(audio.Name) ? tags.Title : audio.Name;
|
|
|
|
audio.Name = string.IsNullOrEmpty(audio.Name) ? tags.Title : audio.Name;
|
|
|
|