Fixed the issue where when we find an episode for the recently added sync, we don't check if we should run the availbility checker.

This commit is contained in:
Jamie 2018-06-15 22:04:06 +01:00
commit 05a0369aca
7 changed files with 102 additions and 39 deletions

View file

@ -0,0 +1,14 @@
using System.Collections.Generic;
using System.Linq;
namespace Ombi.Schedule.Jobs.Plex.Models
{
public class ProcessedContent
{
public IEnumerable<int> Content { get; set; }
public IEnumerable<int> Episodes { get; set; }
public bool HasProcessedContent => Content.Any();
public bool HasProcessedEpisodes => Episodes.Any();
}
}