Skip to content

Commit

Permalink
Fix field mapping causing manual syncs to not function properly (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
tybaker authored Sep 9, 2024
1 parent 4d12564 commit 5480c69
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public Pex2AplosMappingModel Map(Pex2AplosMappingEntity model)
result = new Pex2AplosMappingModel
{
AutomaticSync = model.AutomaticSync,
IsSyncing = model.IsManualSync,
IsSyncing = model.IsSyncing,
IsManualSync = model.IsManualSync,
CreatedUtc = model.CreatedUtc,
PEXBusinessAcctId = model.PEXBusinessAcctId,
Expand Down

0 comments on commit 5480c69

Please sign in to comment.