mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07: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:
parent
0352f8d3ff
commit
d929572beb
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue