mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
Fix: fixed manual job priority issue
This commit is contained in:
@@ -212,7 +212,7 @@ namespace NzbDrone.Core.Jobs
|
|||||||
{
|
{
|
||||||
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);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user