mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: (AvistaZ) Don't log http errors like 404 for imdb/tmdb/tvdb searches
This commit is contained in:
@@ -510,7 +510,10 @@ namespace NzbDrone.Core.Indexers
|
||||
// Throw common http errors here before we try to parse
|
||||
if (response.HasHttpError)
|
||||
{
|
||||
_logger.Warn("HTTP Error - {0}", response);
|
||||
if (response.Request.LogHttpError)
|
||||
{
|
||||
_logger.Warn("HTTP Error - {0}", response);
|
||||
}
|
||||
|
||||
if (response.StatusCode == HttpStatusCode.TooManyRequests)
|
||||
{
|
||||
|
Reference in New Issue
Block a user