1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-27 18:30:45 +00:00

Fix: fixed manual job priority issue

This commit is contained in:
kay.one 2012-03-14 22:18:06 -07:00
parent e60c62703b
commit c477564284

View file

@ -212,7 +212,7 @@ private void ProcessQueue()
{ {
if (Queue.Count != 0) if (Queue.Count != 0)
{ {
job = Queue.OrderByDescending(c=>c.Source).First(); job = Queue.OrderBy(c=>c.Source).First();
logger.Trace("Popping {0} from the queue.", job); logger.Trace("Popping {0} from the queue.", job);
Queue.Remove(job); Queue.Remove(job);
} }