handle empty album artists

pull/702/head
Luke Pulverenti 9 years ago
parent f308a41cab
commit 425948359a

@ -791,6 +791,11 @@ namespace MediaBrowser.MediaEncoding.Probing
}
if (audio.AlbumArtists.Count == 0)
{
audio.AlbumArtists = audio.Artists.Take(1).ToList();
}
// Track number
audio.IndexNumber = GetDictionaryDiscValue(tags, "track");

Loading…
Cancel
Save