If Radarr/Sonarr has noticed that the media is available, then mark it as available in the UI

This commit is contained in:
Jamie 2018-01-02 16:01:56 +00:00
commit a8bb352c34
9 changed files with 954 additions and 13 deletions

View file

@ -53,7 +53,11 @@ namespace Ombi.Schedule.Jobs.Radarr
{
if (m.tmdbId > 0)
{
movieIds.Add(new RadarrCache {TheMovieDbId = m.tmdbId});
movieIds.Add(new RadarrCache
{
TheMovieDbId = m.tmdbId,
HasFile = m.hasFile
});
}
else
{