mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04: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))
|
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)
|
if (ImageSize != other.ImageSize)
|
||||||
|
|||||||
Reference in New Issue
Block a user