From d929572bebb9f04f1865cc3b1a6f9633967a10c2 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Sat, 17 Aug 2019 03:35:53 -0400 Subject: [PATCH] Fixed: Change UI Genre Tag Separator from ", " to " / " (#918) For MP3's, the official separator is " / " and this also works for FLAC. Some applications like Kodi, do not recognize ", " as a separator, but changing it to " / " resolves that... --- src/NzbDrone.Core/MediaFiles/AudioTag.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/MediaFiles/AudioTag.cs b/src/NzbDrone.Core/MediaFiles/AudioTag.cs index 40d7eb996..786f24b5b 100644 --- a/src/NzbDrone.Core/MediaFiles/AudioTag.cs +++ b/src/NzbDrone.Core/MediaFiles/AudioTag.cs @@ -538,7 +538,7 @@ namespace NzbDrone.Core.MediaFiles if (!Genres.SequenceEqual(other.Genres)) { - output.Add("Genres", Tuple.Create(string.Join(", ", Genres), string.Join(", ", other.Genres))); + output.Add("Genres", Tuple.Create(string.Join(" / ", Genres), string.Join(" / ", other.Genres))); } if (ImageSize != other.ImageSize)