1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00

Fixed some compile warnings.

This commit is contained in:
Taloth Saldono
2016-02-11 21:49:22 +01:00
parent 91d91bc673
commit e01b2ef25c
14 changed files with 21 additions and 28 deletions
@@ -206,7 +206,7 @@ namespace NzbDrone.Core.Download.Clients.NzbVortex
{
_proxy.GetQueue(1, Settings);
}
catch (NzbVortexAuthenticationException ex)
catch (NzbVortexAuthenticationException)
{
return new ValidationFailure("ApiKey", "API Key Incorrect");
}
@@ -189,7 +189,7 @@ namespace NzbDrone.Core.Download.Clients.NzbVortex
{
return ProcessRequest(client, request).Content;
}
catch (NzbVortexNotLoggedInException ex)
catch (NzbVortexNotLoggedInException)
{
_logger.Warn("Not logged in response received, reauthenticating and retrying");
request.AddQueryParameter("sessionid", GetSessionId(true, settings));