Skip to content

Commit

Permalink
fix(emby): 🐛 Fixed an issue where we were not properly syncing episodes
Browse files Browse the repository at this point in the history
  • Loading branch information
tidusjar committed Nov 24, 2021
1 parent 3ca796f commit 75529dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ombi.Schedule/Jobs/Emby/EmbyContentSync.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ await _notification.Clients.Clients(NotificationHub.AdminConnectionIds)
// 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() } }));
}


Expand Down

0 comments on commit 75529dd

Please sign in to comment.