Skip to content

Commit

Permalink
fix(emby): Fix Emby played sync running a full sync during recently a…
Browse files Browse the repository at this point in the history
…dded sync (#4932)
  • Loading branch information
sephrat committed May 17, 2023
1 parent ac5b377 commit 9424586
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ombi.Schedule/Jobs/Emby/EmbyLibrarySync.cs
Expand Up @@ -35,7 +35,7 @@ public abstract class EmbyLibrarySync
public virtual async Task Execute(IJobExecutionContext context)
{

JobDataMap dataMap = context.JobDetail.JobDataMap;
JobDataMap dataMap = context.MergedJobDataMap;
if (dataMap.TryGetValue(JobDataKeys.EmbyRecentlyAddedSearch, out var recentlyAddedObj))
{
recentlyAdded = Convert.ToBoolean(recentlyAddedObj);
Expand Down

0 comments on commit 9424586

Please sign in to comment.