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...
This commit is contained in:
RandomNinjaAtk 2019-08-17 03:35:53 -04:00 committed by ta264
parent 0352f8d3ff
commit d929572beb
1 changed files with 1 additions and 1 deletions

View File

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