Fixed dynamic jobs with single property

This commit is contained in:
Mark McDowall 2012-10-19 21:36:47 -07:00
parent f9370a8aec
commit 887456b337
5 changed files with 9 additions and 9 deletions

View file

@ -36,7 +36,7 @@ namespace NzbDrone.Web.Controllers
public ActionResult StartUpdate()
{
_jobProvider.QueueJob(typeof(AppUpdateJob), 0, 0);
_jobProvider.QueueJob(typeof(AppUpdateJob));
return JsonNotificationResult.Info("Update will begin shortly", "NzbDrone will restart automatically.");
}