Skip to content

Commit

Permalink
Fixes #684 - disabled blueprint handler override
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinJump committed Jun 6, 2024
1 parent fbbe794 commit 6056bc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uSync.BackOffice/Services/uSyncService_Single.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public IEnumerable<uSyncAction> ImportPartial(IList<OrderedNodeInfo> orderedNode
if (node.IsContent() && node.IsBlueprint())
{
lastType = UdiEntityType.DocumentBlueprint;
handlerPair = _handlerFactory.GetValidHandlerByEntityType(UdiEntityType.DocumentBlueprint);
handlerPair = _handlerFactory.GetValidHandlerByEntityType(UdiEntityType.DocumentBlueprint, syncHandlerOptions);
}
}

Expand Down

0 comments on commit 6056bc2

Please sign in to comment.