mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-17 15:53:42 +01:00
fixes #520 - Support multiple artists per audio track
This commit is contained in:
@@ -37,7 +37,7 @@ namespace MediaBrowser.Server.Implementations.Sorting
|
||||
return string.Empty;
|
||||
}
|
||||
|
||||
return audio.Artist ?? string.Empty;
|
||||
return audio.Artists.FirstOrDefault() ?? string.Empty;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user