mirror of
https://github.com/Radarr/Radarr
synced 2025-01-31 03:41:24 +00:00
Shitty merge, manually fixed it.
This commit is contained in:
parent
ef16e72b09
commit
bf17b63d2b
1 changed files with 0 additions and 5 deletions
|
@ -260,7 +260,6 @@ public JsonResult AutoConfigureSab()
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
public JsonResult SaveIndexers(IndexerSettingsModel data)
|
public JsonResult SaveIndexers(IndexerSettingsModel data)
|
||||||
{
|
{
|
||||||
_notificationProvider.Register(progressNotification);
|
|
||||||
if (ModelState.IsValid)
|
if (ModelState.IsValid)
|
||||||
{
|
{
|
||||||
var nzbsOrgSettings = _indexerProvider.GetSettings(typeof(NzbsOrg));
|
var nzbsOrgSettings = _indexerProvider.GetSettings(typeof(NzbsOrg));
|
||||||
|
@ -300,7 +299,6 @@ public JsonResult SaveIndexers(IndexerSettingsModel data)
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
public JsonResult SaveSabnzbd(SabnzbdSettingsModel data)
|
public JsonResult SaveSabnzbd(SabnzbdSettingsModel data)
|
||||||
{
|
{
|
||||||
_notificationProvider.Register(progressNotification);
|
|
||||||
if (ModelState.IsValid)
|
if (ModelState.IsValid)
|
||||||
{
|
{
|
||||||
_configProvider.SabHost = data.SabHost;
|
_configProvider.SabHost = data.SabHost;
|
||||||
|
@ -325,7 +323,6 @@ public JsonResult SaveSabnzbd(SabnzbdSettingsModel data)
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
public ActionResult SaveQuality(QualityModel data)
|
public ActionResult SaveQuality(QualityModel data)
|
||||||
{
|
{
|
||||||
_notificationProvider.Register(progressNotification);
|
|
||||||
if (ModelState.IsValid)
|
if (ModelState.IsValid)
|
||||||
{
|
{
|
||||||
_configProvider.DefaultQualityProfile = data.DefaultQualityProfileId;
|
_configProvider.DefaultQualityProfile = data.DefaultQualityProfileId;
|
||||||
|
@ -366,7 +363,6 @@ public ActionResult SaveQuality(QualityModel data)
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
public ActionResult SaveNotifications(NotificationSettingsModel data)
|
public ActionResult SaveNotifications(NotificationSettingsModel data)
|
||||||
{
|
{
|
||||||
_notificationProvider.Register(progressNotification);
|
|
||||||
if (ModelState.IsValid)
|
if (ModelState.IsValid)
|
||||||
{
|
{
|
||||||
//XBMC Enabled
|
//XBMC Enabled
|
||||||
|
@ -391,7 +387,6 @@ public ActionResult SaveNotifications(NotificationSettingsModel data)
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
public ActionResult SaveEpisodeSorting(EpisodeSortingModel data)
|
public ActionResult SaveEpisodeSorting(EpisodeSortingModel data)
|
||||||
{
|
{
|
||||||
_notificationProvider.Register(progressNotification);
|
|
||||||
if (ModelState.IsValid)
|
if (ModelState.IsValid)
|
||||||
{
|
{
|
||||||
_configProvider.SortingIncludeSeriesName = data.SeriesName;
|
_configProvider.SortingIncludeSeriesName = data.SeriesName;
|
||||||
|
|
Loading…
Reference in a new issue