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

Fixed: Fall back to sorting by release title if artist is not matched

Fixes 
sonarr-pull-4c7df310
Qstick 3 years ago
parent 71bd88e531
commit 29e3d8f477

@ -176,7 +176,7 @@ namespace Readarr.Api.V1.Queue
case "status":
return q => q.Status;
case "authors.sortName":
return q => q.Author?.Metadata.Value.SortName ?? string.Empty;
return q => q.Author?.Metadata.Value.SortName ?? q.Title;
case "authors.sortNameLastFirst":
return q => q.Author?.Metadata.Value.SortNameLastFirst ?? string.Empty;
case "title":

Loading…
Cancel
Save