mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 04:49:33 -07:00
Fixed the 'loop' in the cacher #2429
This commit is contained in:
parent
b60e802ba7
commit
e4f90e6c17
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ namespace Ombi.Schedule.Jobs.Plex.Models
|
||||||
public IEnumerable<int> Content { get; set; }
|
public IEnumerable<int> Content { get; set; }
|
||||||
public IEnumerable<int> Episodes { get; set; }
|
public IEnumerable<int> Episodes { get; set; }
|
||||||
|
|
||||||
public bool HasProcessedContent => Content.Any();
|
public bool HasProcessedContent => Content?.Any() ?? false;
|
||||||
public bool HasProcessedEpisodes => Episodes.Any();
|
public bool HasProcessedEpisodes => Episodes?.Any() ?? false;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue