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

@ -89,6 +89,7 @@ namespace Ombi.Store.Repository
{
return await Db.PlexServerContent
.Include(x => x.Seasons)
.Include(x => x.Episodes)
.FirstOrDefaultAsync(predicate);
}