1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-03 22:57:18 +02:00

Fixed: Show correct error on unauthorized caps call

(cherry picked from commit f2b0fc946e1fb1b4649f1b46a003bd2add09a461)
This commit is contained in:
Qstick 2023-09-18 03:09:12 -04:00 committed by Bogdan
parent 2a2667a2ec
commit b7cafb2917

View File

@ -7,6 +7,7 @@
using NzbDrone.Common.Extensions;
using NzbDrone.Common.Http;
using NzbDrone.Common.Serializer;
using NzbDrone.Core.Indexers.Exceptions;
namespace NzbDrone.Core.Indexers.Newznab
{
@ -73,6 +74,13 @@ private NewznabCapabilities FetchCapabilities(NewznabSettings indexerSettings)
_logger.Debug(ex, "Failed to parse newznab api capabilities for {0}", indexerSettings.BaseUrl);
throw;
}
catch (ApiKeyException ex)
{
ex.WithData(response, 128 * 1024);
_logger.Trace("Unexpected Response content ({0} bytes): {1}", response.ResponseData.Length, response.Content);
_logger.Debug(ex, "Failed to parse newznab api capabilities for {0}, invalid API key", indexerSettings.BaseUrl);
throw;
}
catch (Exception ex)
{
ex.WithData(response, 128 * 1024);