1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -04:00

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
@@ -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()