From 64c2fb2deefe44eea10f98343b2f257b8e3d4f34 Mon Sep 17 00:00:00 2001 From: Qstick Date: Mon, 26 Sep 2022 18:54:00 -0500 Subject: [PATCH] Fixed: Fall back to sorting by release title if artist is not matched --- src/Lidarr.Api.V1/Queue/QueueController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lidarr.Api.V1/Queue/QueueController.cs b/src/Lidarr.Api.V1/Queue/QueueController.cs index 8787845da..40402bb3e 100644 --- a/src/Lidarr.Api.V1/Queue/QueueController.cs +++ b/src/Lidarr.Api.V1/Queue/QueueController.cs @@ -172,7 +172,7 @@ namespace Lidarr.Api.V1.Queue case "status": return q => q.Status; case "artists.sortName": - return q => q.Artist?.SortName ?? string.Empty; + return q => q.Artist?.SortName ?? q.Title; case "title": return q => q.Title; case "album":