aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-05 12:05:30 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-05 12:27:46 -0500
commit29e3b8a29be392a9b3fd88d27134e1c9c946020d (patch)
treeadee2d9f9a8468b380daf6f3126f608896447eb7
parente9e3099f466ef2c45feae95c183f8ef776edf0c8 (diff)
separate artists with semi-colon
-rw-r--r--MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs b/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs
index 791dc0cf1..d98efffe7 100644
--- a/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs
+++ b/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs
@@ -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();
}