1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-01 12:54:21 +00:00

Catching predb.me errors hopefully.

This commit is contained in:
Leonardo Galli 2017-04-11 12:15:52 +02:00
parent d33ec334f3
commit 63d7596e98

View file

@ -170,6 +170,8 @@ public void Execute(PreDBSyncCommand message)
}
public bool HasReleases(Movie movie)
{
try
{
var results = GetResults("movies", movie.Title);
@ -190,5 +192,12 @@ public bool HasReleases(Movie movie)
return false;
}
catch (Exception ex)
{
_logger.Warn(ex, "Error while looking on predb.me.");
return false;
}
}
}
}