From bd937b9dd34960ce88b5d4e1c80b703e560f2e7e Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 24 Sep 2022 22:57:07 -0700 Subject: [PATCH] Fixed: Fall back to sorting by release title if series is not matched Closes #5151 --- src/Sonarr.Api.V3/Queue/QueueController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sonarr.Api.V3/Queue/QueueController.cs b/src/Sonarr.Api.V3/Queue/QueueController.cs index cbf9d96eb..ce8b14e12 100644 --- a/src/Sonarr.Api.V3/Queue/QueueController.cs +++ b/src/Sonarr.Api.V3/Queue/QueueController.cs @@ -184,7 +184,7 @@ namespace Sonarr.Api.V3.Queue case "status": return q => q.Status; case "series.sortTitle": - return q => q.Series?.SortTitle ?? string.Empty; + return q => q.Series?.SortTitle ?? q.Title; case "title": return q => q.Title; case "episode":