Fixed the episode cache #3557

This commit is contained in:
Jamie Rees 2020-05-21 21:19:12 +01:00
parent aac55d6a52
commit aa0d75144f

View file

@ -172,7 +172,7 @@ namespace Ombi.Schedule.Jobs.Plex
{
// Ok let's try and match it to a title. TODO (This is experimental)
seriesExists = await _repo.GetAll().FirstOrDefaultAsync(x =>
x.Title.Equals(episode.grandparentTitle, StringComparison.CurrentCultureIgnoreCase));
x.Title == episode.grandparentTitle);
if (seriesExists == null)
{
_log.LogWarning(