SABnzbd Auto-Configure will now display an error on failure.

pull/4/head
Mark McDowall 13 years ago
parent ff4d90eef3
commit a681024db2

@ -307,7 +307,6 @@ namespace NzbDrone.Web.Controllers
return new JsonResult { Data = "ok" }; return new JsonResult { Data = "ok" };
} }
public QualityModel GetUpdatedProfileList() public QualityModel GetUpdatedProfileList()
{ {
var profiles = _qualityProvider.All().ToList(); var profiles = _qualityProvider.All().ToList();
@ -323,7 +322,16 @@ namespace NzbDrone.Web.Controllers
try try
{ {
var info = _autoConfigureProvider.AutoConfigureSab(); var info = _autoConfigureProvider.AutoConfigureSab();
if (info != null)
return Json(info, JsonRequestBehavior.AllowGet); return Json(info, JsonRequestBehavior.AllowGet);
return Json(new NotificationResult
{
Title = "Auto-Configure Failed",
Text = "Please enter your SAB Settings Manually",
NotificationType = NotificationType.Error
}, JsonRequestBehavior.AllowGet);
} }
catch (Exception) catch (Exception)

Loading…
Cancel
Save