mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 14:03:03 +03:00
separate artists with semi-colon
This commit is contained in:
@@ -455,7 +455,7 @@ namespace MediaBrowser.MediaEncoding.Probing
|
|||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(artists))
|
if (!string.IsNullOrWhiteSpace(artists))
|
||||||
{
|
{
|
||||||
audio.Artists = SplitArtists(artists, new[] { '/' }, false)
|
audio.Artists = SplitArtists(artists, new[] { '/', ';' }, false)
|
||||||
.Distinct(StringComparer.OrdinalIgnoreCase)
|
.Distinct(StringComparer.OrdinalIgnoreCase)
|
||||||
.ToList();
|
.ToList();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user