mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-10 07:13:47 -07:00
JobProvider now fully works based on a queuing logic, which allows more than one job to be queued. (EasyButton included!)
This commit is contained in:
parent
fdd6e37b24
commit
2f786bf424
9 changed files with 160 additions and 51 deletions
|
@ -36,7 +36,7 @@ namespace NzbDrone.Web.Controllers
|
|||
[HttpPost]
|
||||
public JsonResult ScanNewSeries()
|
||||
{
|
||||
_jobProvider.BeginExecute(typeof(NewSeriesUpdate));
|
||||
_jobProvider.QueueJob(typeof(NewSeriesUpdate));
|
||||
return new JsonResult();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue