separate artists with semi-colon
This commit is contained in:
parent
0eca1554f9
commit
db73c3bb0a
|
@ -455,7 +455,7 @@ namespace MediaBrowser.MediaEncoding.Probing
|
||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(artists))
|
if (!string.IsNullOrWhiteSpace(artists))
|
||||||
{
|
{
|
||||||
audio.Artists = SplitArtists(artists, new[] { '/' }, false)
|
audio.Artists = SplitArtists(artists, new[] { '/', ';' }, false)
|
||||||
.Distinct(StringComparer.OrdinalIgnoreCase)
|
.Distinct(StringComparer.OrdinalIgnoreCase)
|
||||||
.ToList();
|
.ToList();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user