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

This commit is contained in:
Mark McDowall 2014-02-19 18:40:19 -08:00
parent 46f904d165
commit d703bc8dc5
2 changed files with 2 additions and 7 deletions

View File

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

View File

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