Remove sonarr episodes from the cache table

pull/1614/head
Jamie.Rees 7 years ago
parent 4eb58d359c
commit 0ceb8a3c95

@ -54,6 +54,7 @@ namespace Ombi.Schedule.Jobs.Sonarr
await _ctx.SonarrCache.AddRangeAsync(entites);
var episodesToAdd = new List<SonarrEpisodeCache>();
await _ctx.Database.ExecuteSqlCommandAsync("DELETE FROM SonarrEpisodeCache");
foreach (var s in sonarrSeries)
{
var episodes = await _api.GetEpisodes(s.id, settings.ApiKey, settings.FullUri);

Loading…
Cancel
Save