pull/1204/head
Jamie.Rees 8 years ago
parent 487abf3ac2
commit 0dfd2f2658

@ -15,7 +15,7 @@ namespace Ombi.Api.Models.Tv
public string language { get; set; }
public List<string> genres { get; set; }
public string status { get; set; }
public int runtime { get; set; }
public double runtime { get; set; }
public string premiered { get; set; }
public Schedule schedule { get; set; }
public Rating rating { get; set; }

@ -73,6 +73,10 @@ namespace Ombi.Services.Jobs
{
movieIds.Add(m.tmdbId);
}
else
{
Log.Error("TMDBId is not > 0 for movie {0}", m.title);
}
}
//var movieIds = movies.Select(x => x.tmdbId).ToList();
Cache.Set(CacheKeys.RadarrMovies, movieIds, CacheKeys.TimeFrameMinutes.SchedulerCaching);

Loading…
Cancel
Save