Fixed: Sorting queue by size

pull/5748/head
Bogdan 1 year ago committed by GitHub
parent 5601a94016
commit e2f27e0c61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -233,6 +233,8 @@ namespace Sonarr.Api.V3.Queue
return q => q.Languages;
case "quality":
return q => q.Quality;
case "size":
return q => q.Size;
case "progress":
// Avoid exploding if a download's size is 0
return q => 100 - (q.Sizeleft / Math.Max(q.Size * 100, 1));

Loading…
Cancel
Save