From bf17b63d2b25620a0a667c9055a7a684cb6036b2 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 8 Aug 2011 16:38:55 -0700 Subject: [PATCH] Shitty merge, manually fixed it. --- NzbDrone.Web/Controllers/SettingsController.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/NzbDrone.Web/Controllers/SettingsController.cs b/NzbDrone.Web/Controllers/SettingsController.cs index 4ba6e5c0d..62fb37225 100644 --- a/NzbDrone.Web/Controllers/SettingsController.cs +++ b/NzbDrone.Web/Controllers/SettingsController.cs @@ -260,7 +260,6 @@ namespace NzbDrone.Web.Controllers [HttpPost] public JsonResult SaveIndexers(IndexerSettingsModel data) { - _notificationProvider.Register(progressNotification); if (ModelState.IsValid) { var nzbsOrgSettings = _indexerProvider.GetSettings(typeof(NzbsOrg)); @@ -300,7 +299,6 @@ namespace NzbDrone.Web.Controllers [HttpPost] public JsonResult SaveSabnzbd(SabnzbdSettingsModel data) { - _notificationProvider.Register(progressNotification); if (ModelState.IsValid) { _configProvider.SabHost = data.SabHost; @@ -325,7 +323,6 @@ namespace NzbDrone.Web.Controllers [HttpPost] public ActionResult SaveQuality(QualityModel data) { - _notificationProvider.Register(progressNotification); if (ModelState.IsValid) { _configProvider.DefaultQualityProfile = data.DefaultQualityProfileId; @@ -366,7 +363,6 @@ namespace NzbDrone.Web.Controllers [HttpPost] public ActionResult SaveNotifications(NotificationSettingsModel data) { - _notificationProvider.Register(progressNotification); if (ModelState.IsValid) { //XBMC Enabled @@ -391,7 +387,6 @@ namespace NzbDrone.Web.Controllers [HttpPost] public ActionResult SaveEpisodeSorting(EpisodeSortingModel data) { - _notificationProvider.Register(progressNotification); if (ModelState.IsValid) { _configProvider.SortingIncludeSeriesName = data.SeriesName;