mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Converted jobs to dynamic
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user