New: Link to "Why Searches Could be Failing" wiki section

This commit is contained in:
Bogdan
2024-05-19 18:20:11 +03:00
parent 05d0fe2da6
commit 6b6ff4fe76
3 changed files with 22 additions and 8 deletions

View File

@@ -348,6 +348,7 @@
"ExtraFileExtensionsHelpText": "Comma separated list of extra files to import (.nfo will be imported as .nfo-orig)",
"ExtraFileExtensionsHelpTextsExamples": "Examples: '.sub, .nfo' or 'sub,nfo'",
"FailedDownloadHandling": "Failed Download Handling",
"FailedLoadingSearchResults": "Failed to load search results, please try again.",
"FailedToLoadQueue": "Failed to load Queue",
"FileDateHelpText": "Change file date on import/rescan",
"FileDetails": "File Details",
@@ -1073,6 +1074,7 @@
"WatchRootFoldersForFileChanges": "Watch Root Folders for file changes",
"WeekColumnHeader": "Week Column Header",
"WhatsNew": "What's New?",
"WhySearchesCouldBeFailing": "Click here to find out why searches could be failing",
"WouldYouLikeToRestoreBackup": "Would you like to restore the backup '{name}'?",
"WriteAudioTags": "Tag Audio Files with Metadata",
"WriteAudioTagsScrub": "Scrub Existing Tags",

View File

@@ -218,13 +218,12 @@ namespace NzbDrone.Core.MetadataSource.BookInfo
catch (HttpException ex)
{
_logger.Warn(ex, ex.Message);
throw new GoodreadsException("Search for '{0}' failed. Unable to communicate with Goodreads.", title);
throw new GoodreadsException("Search for '{0}' failed. Unable to communicate with Goodreads.", ex, title);
}
catch (Exception ex)
catch (Exception ex) when (ex is not BookInfoException)
{
_logger.Warn(ex, ex.Message);
throw new GoodreadsException("Search for '{0}' failed. Invalid response received from Goodreads.",
title);
throw new GoodreadsException("Search for '{0}' failed. Invalid response received from Goodreads.", ex, title);
}
}
@@ -296,6 +295,11 @@ namespace NzbDrone.Core.MetadataSource.BookInfo
{
return MapSearchResult(ids);
}
catch (HttpException ex)
{
_logger.Warn(ex);
throw new BookInfoException("Search for '{0}' failed. Unable to communicate with ReadarrAPI, returning status code: {1}.", ex, query, ex.Response.StatusCode);
}
catch (Exception e)
{
_logger.Warn(e, "Error mapping search results");
@@ -484,7 +488,7 @@ namespace NzbDrone.Core.MetadataSource.BookInfo
httpRequest.ContentSummary = ids.ToJson(Formatting.None);
httpRequest.AllowAutoRedirect = true;
httpRequest.SuppressHttpError = true;
httpRequest.SuppressHttpErrorStatusCodes = new[] { HttpStatusCode.TooManyRequests };
httpResponse = _httpClient.Post<BulkBookResource>(httpRequest);