1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Merge remote-tracking branch 'refs/remotes/galli-leo/develop' into develop

This commit is contained in:
Tim Turner 2017-01-08 19:48:14 -05:00
commit 4c9abe3d84
2 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ public class SonarrCloudRequestBuilder : ISonarrCloudRequestBuilder
{
public SonarrCloudRequestBuilder()
{
Services = new HttpRequestBuilder("https://radarr.aeonlucid.com/v1/")
Services = new HttpRequestBuilder("http://radarr.aeonlucid.com/v1/")
.CreateFactory();
SkyHookTvdb = new HttpRequestBuilder("http://skyhook.sonarr.tv/v1/tvdb/{route}/{language}/")

View File

@ -319,10 +319,10 @@ public List<Movie> SearchForNewMovie(string title)
imdbMovies.Add(imdbMovie);
}
catch
{
}
catch (Exception e)
{
_logger.Error(e, "Error occured while searching for new movies.");
}
}