Fixed: SABnzbd test with fail if the API Key is wrong

pull/55/merge
Mark McDowall 11 years ago
parent 46f904d165
commit d703bc8dc5

@ -127,7 +127,7 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
var settings = new SabnzbdSettings(); var settings = new SabnzbdSettings();
settings.InjectFrom(message); settings.InjectFrom(message);
_sabnzbdProxy.GetVersion(settings); _sabnzbdProxy.GetCategories(settings);
} }
} }
} }

@ -85,12 +85,7 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
var request = new RestRequest(); var request = new RestRequest();
var action = "mode=get_cats"; var action = "mode=get_cats";
SabnzbdCategoryResponse response; var response = Json.Deserialize<SabnzbdCategoryResponse>(ProcessRequest(request, action, settings));
if (!Json.TryDeserialize<SabnzbdCategoryResponse>(ProcessRequest(request, action, settings), out response))
{
response = new SabnzbdCategoryResponse();
}
return response; return response;
} }

Loading…
Cancel
Save