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

pull/5018/head
antonin.bruzard 9 months ago
parent 9c2e1b4353
commit 4c1bf2d055

@ -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);
}
}

Loading…
Cancel
Save