fix(plex): Fixed an issue where sometimes the availability checker would throw an exception when checking episodes

pull/4786/head
tidusjar 2 years ago
parent 217367047d
commit 17ba2020ee

@ -101,7 +101,7 @@ namespace Ombi.Schedule.Jobs.Plex
{
// Let's try and match the series by name
seriesEpisodes = plexEpisodes.Where(x =>
x.Series.Title.Equals(child.Title, StringComparison.InvariantCultureIgnoreCase));
x.Series.Title == child.Title);
}
await ProcessTvShow(seriesEpisodes, child);

Loading…
Cancel
Save