Skip to content

Commit

Permalink
Fixed #1192
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie.Rees authored and Jamie.Rees committed Feb 27, 2017
1 parent 487abf3 commit 0dfd2f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Ombi.Api.Models/Tv/TVMazeShow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public TvMazeShow()
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; }
Expand Down
4 changes: 4 additions & 0 deletions Ombi.Services/Jobs/RadarrCacher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ public void Queued()
{
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);
Expand Down

0 comments on commit 0dfd2f2

Please sign in to comment.