mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-13 00:23:59 -07:00
Fix: fixed manual job priority issue
This commit is contained in:
parent
e60c62703b
commit
c477564284
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ namespace NzbDrone.Core.Jobs
|
|||
{
|
||||
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);
|
||||
Queue.Remove(job);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue