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...
pull/922/head
RandomNinjaAtk 5 years ago committed by ta264
parent 0352f8d3ff
commit d929572beb

@ -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)

Loading…
Cancel
Save