mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 13:23:20 -07:00
fix(plex): Fixed an issue where sometimes the availability checker would throw an exception when checking episodes
This commit is contained in:
parent
217367047d
commit
17ba2020ee
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ namespace Ombi.Schedule.Jobs.Plex
|
||||||
{
|
{
|
||||||
// Let's try and match the series by name
|
// Let's try and match the series by name
|
||||||
seriesEpisodes = plexEpisodes.Where(x =>
|
seriesEpisodes = plexEpisodes.Where(x =>
|
||||||
x.Series.Title.Equals(child.Title, StringComparison.InvariantCultureIgnoreCase));
|
x.Series.Title == child.Title);
|
||||||
}
|
}
|
||||||
|
|
||||||
await ProcessTvShow(seriesEpisodes, child);
|
await ProcessTvShow(seriesEpisodes, child);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue