mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 09:33:52 -07:00
Converted jobs to dynamic
This commit is contained in:
parent
93402f4932
commit
a4dde81ceb
42 changed files with 166 additions and 170 deletions
|
@ -80,7 +80,7 @@ namespace NzbDrone.Web.Controllers
|
|||
[HttpPost]
|
||||
public EmptyResult DeleteSeries(int seriesId, bool deleteFiles)
|
||||
{
|
||||
_jobProvider.QueueJob(typeof(DeleteSeriesJob), seriesId, Convert.ToInt32(deleteFiles));
|
||||
_jobProvider.QueueJob(typeof(DeleteSeriesJob), new { SeriesId = seriesId, DeleteFiles = deleteFiles });
|
||||
|
||||
return new EmptyResult();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue