separate artists with semi-colon

This commit is contained in:
Luke Pulverenti 2016-01-05 12:05:30 -05:00
parent 0eca1554f9
commit db73c3bb0a

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();
}