mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Fixed dynamic jobs with single property
This commit is contained in:
parent
f9370a8aec
commit
887456b337
5 changed files with 9 additions and 9 deletions
|
@ -60,9 +60,9 @@ namespace NzbDrone.Web.Controllers
|
|||
|
||||
public JsonResult ForceRefresh(int seriesId)
|
||||
{
|
||||
_jobProvider.QueueJob(typeof(UpdateInfoJob), seriesId);
|
||||
_jobProvider.QueueJob(typeof(DiskScanJob), seriesId);
|
||||
_jobProvider.QueueJob(typeof(RefreshEpisodeMetadata), seriesId);
|
||||
_jobProvider.QueueJob(typeof(UpdateInfoJob), new { SeriesId = seriesId });
|
||||
_jobProvider.QueueJob(typeof(DiskScanJob), new { SeriesId = seriesId });
|
||||
_jobProvider.QueueJob(typeof(RefreshEpisodeMetadata), new { SeriesId = seriesId });
|
||||
|
||||
return JsonNotificationResult.Queued("Episode update/Disk scan");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue