mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Queue UI no longer shows unknown ETAs as 0:00:00.
This commit is contained in:
@@ -24,7 +24,10 @@ namespace NzbDrone.Core.Queue
|
||||
|
||||
public List<Queue> GetQueue()
|
||||
{
|
||||
var queueItems = _downloadTrackingService.GetQueuedDownloads().Select(v => v.DownloadItem).ToList();
|
||||
var queueItems = _downloadTrackingService.GetQueuedDownloads()
|
||||
.Select(v => v.DownloadItem)
|
||||
.OrderBy(v => v.RemainingTime)
|
||||
.ToList();
|
||||
|
||||
return MapQueue(queueItems);
|
||||
}
|
||||
|
Reference in New Issue
Block a user