Fixed: Possible DivideByZeroException when getting queue

Closes #161
This commit is contained in:
Qstick 2017-12-20 22:04:24 -05:00
parent 9a0587bc17
commit c83353e7ee
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ namespace Lidarr.Api.V1.Queue
ordered = ascending ? fullQueue.OrderBy(orderByFunc) : fullQueue.OrderByDescending(orderByFunc);
}
ordered = ordered.ThenByDescending(q => 100 - q.Sizeleft / q.Size * 100);
ordered = ordered.ThenByDescending(q => q.Size == 0 ? 0 : 100 - q.Sizeleft / q.Size * 100);
pagingSpec.Records = ordered.Skip((pagingSpec.Page - 1) * pagingSpec.PageSize).Take(pagingSpec.PageSize).ToList();
pagingSpec.TotalRecords = fullQueue.Count;