We now show "Available" for tv shows that is fully available #1602

This commit is contained in:
tidusjar 2017-10-26 22:09:35 +01:00
parent 7e4de5cbd7
commit fe7ca844dc
3 changed files with 7 additions and 3 deletions

View file

@ -46,6 +46,11 @@ namespace Ombi.Core.Rule.Rules.Search
}
}
}
if (search.SeasonRequests.All(x => x.Episodes.All(e => e.Available)))
{
search.FullyAvailable = true;
}
}
}
}