fix(emby): 🐛 Fixed an issue where we were not properly syncing episodes

This commit is contained in:
tidusjar 2021-11-24 22:27:28 +00:00
commit 75529dd972

View file

@ -79,7 +79,7 @@ namespace Ombi.Schedule.Jobs.Emby
// Episodes
await OmbiQuartz.Scheduler.TriggerJob(new JobKey(nameof(IEmbyEpisodeSync), "Emby"), new JobDataMap(new Dictionary<string, string> { { JobDataKeys.EmbyRecentlyAddedSearch, "true" } }));
await OmbiQuartz.Scheduler.TriggerJob(new JobKey(nameof(IEmbyEpisodeSync), "Emby"), new JobDataMap(new Dictionary<string, string> { { JobDataKeys.EmbyRecentlyAddedSearch, recentlyAddedSearch.ToString() } }));
}