mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
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:
parent
8cbdab8e22
commit
05a0369aca
7 changed files with 102 additions and 39 deletions
14
src/Ombi.Schedule/Jobs/Plex/Models/ProcessedContent.cs
Normal file
14
src/Ombi.Schedule/Jobs/Plex/Models/ProcessedContent.cs
Normal 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();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue