Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/3c7f80612d9308970d6db961107c1939a92d8183 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Sorting of queue by movie title when unknown items are included

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
pull/4530/head
Qstick 5 years ago
parent 2328b384e2
commit 3c7f80612d

@ -125,7 +125,7 @@ namespace Radarr.Api.V3.Queue
case "status":
return q => q.Status;
case "movies.sortTitle":
return q => q.Movie?.SortTitle;
return q => q.Movie?.SortTitle ?? string.Empty;
case "title":
return q => q.Title;
case "languages":

Loading…
Cancel
Save