bugfix (mutliple servers): attempting to cache the Plex Content in server

This commit is contained in:
antonin.bruzard 2023-10-01 16:01:55 +02:00
commit 4c1bf2d055

View file

@ -278,6 +278,10 @@ namespace Ombi.Schedule.Jobs.Plex
await Repo.AddRange(contentToAdd);
foreach (var c in contentToAdd)
{
if (contentProcessed.ContainsKey(c.Id)) {
continue;
}
contentProcessed.Add(c.Id, c.Key);
}
}