mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-05 13:20:32 -05:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user