mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-21 01:26:41 +00:00
audio page progress
This commit is contained in:
@@ -32,7 +32,12 @@ namespace MediaBrowser.Server.Implementations.Sorting
|
||||
{
|
||||
var audio = x as Audio;
|
||||
|
||||
return audio == null ? string.Empty : audio.Artists.OrderBy(i => i).FirstOrDefault() ?? string.Empty;
|
||||
if (audio == null)
|
||||
{
|
||||
return string.Empty;
|
||||
}
|
||||
|
||||
return audio.Artist ?? string.Empty;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user