Changed Job.ExecuteNow to ExecutionEnqueue

Instead of replacing progressToken, change Increments based in completed increments
This commit is contained in:
2023-09-02 16:14:21 +02:00
parent 51a1ae72ca
commit c0e6da144e
2 changed files with 6 additions and 5 deletions

View File

@ -130,7 +130,7 @@ public class JobBoss : GlobalBase
Queue<Job> connectorJobQueue = mangaConnectorJobQueue[job.mangaConnector];
if(!connectorJobQueue.Contains(job))
connectorJobQueue.Enqueue(job);
job.ExecuteNow();
job.ExecutionEnqueue();
}
public void AddJobsToQueue(IEnumerable<Job> jobs)