mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Fixed the episode cache #3557
This commit is contained in:
parent
aac55d6a52
commit
aa0d75144f
1 changed files with 1 additions and 1 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue