Throw on search error

Fixes #4690
This commit is contained in:
Qstick 2022-10-17 20:10:23 -05:00
parent 4a205d8041
commit 43cd536746
2 changed files with 2 additions and 2 deletions

View File

@ -70,6 +70,7 @@ namespace NzbDrone.Core.DecisionEngine
{
DownloadDecision decision = null;
_logger.ProgressTrace("Processing release {0}/{1}", reportNumber, reports.Count);
_logger.Debug("Processing release '{0}' from '{1}'", report.Title, report.Indexer);
try
{

View File

@ -122,9 +122,8 @@ namespace Radarr.Api.V3.Indexers
catch (Exception ex)
{
_logger.Error(ex, "Movie search failed: " + ex.Message);
throw new NzbDroneClientException(HttpStatusCode.InternalServerError, ex.Message);
}
return new List<ReleaseResource>();
}
private List<ReleaseResource> GetRss()