separate artists with semi-colon

This commit is contained in:
Luke Pulverenti 2016-01-05 12:05:30 -05:00
parent e9e3099f46
commit 29e3b8a29b

View File

@ -455,7 +455,7 @@ namespace MediaBrowser.MediaEncoding.Probing
if (!string.IsNullOrWhiteSpace(artists))
{
audio.Artists = SplitArtists(artists, new[] { '/' }, false)
audio.Artists = SplitArtists(artists, new[] { '/', ';' }, false)
.Distinct(StringComparer.OrdinalIgnoreCase)
.ToList();
}