mirror of
https://github.com/Radarr/Radarr
synced 2025-02-22 06:11:09 +00:00
Update name for errors with metadata API
This commit is contained in:
parent
8ec6b5dd4d
commit
94287d9427
1 changed files with 3 additions and 3 deletions
|
@ -517,17 +517,17 @@ public List<Movie> SearchForNewMovie(string title)
|
|||
catch (HttpException ex)
|
||||
{
|
||||
_logger.Warn(ex);
|
||||
throw new SkyHookException("Search for '{0}' failed. Unable to communicate with TMDb.", ex, title);
|
||||
throw new SkyHookException("Search for '{0}' failed. Unable to communicate with RadarrAPI.", ex, title);
|
||||
}
|
||||
catch (WebException ex)
|
||||
{
|
||||
_logger.Warn(ex);
|
||||
throw new SkyHookException("Search for '{0}' failed. Unable to communicate with TMDb.", ex, title, ex.Message);
|
||||
throw new SkyHookException("Search for '{0}' failed. Unable to communicate with RadarrAPI.", ex, title, ex.Message);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.Warn(ex);
|
||||
throw new SkyHookException("Search for '{0}' failed. Invalid response received from TMDb.", ex, title);
|
||||
throw new SkyHookException("Search for '{0}' failed. Invalid response received from RadarrAPI.", ex, title);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue