Skip to content

Commit

Permalink
Fixing the issue reported in discussion #73
Browse files Browse the repository at this point in the history
  • Loading branch information
modery committed Jan 20, 2023
1 parent f418306 commit 5834619
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PowerDocu.FlowDocumenter/GraphBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ void addEdgesToGraph(RootGraph rootGraph, ActionNode node, Node previousNeighbou
else if (precedingNeighbour != null && !edges.Contains(edgeName))
{
edgeName = "Edge " + precedingNeighbour.Name + "-" + currentNode.GetName();
Node precNode = rootGraph.GetNode(precedingNeighbour.Name);
Node precNode = rootGraph.GetNode(CharsetHelper.GetSafeName(precedingNeighbour.Name));
if (precNode != null)
{
CreateEdge(currentNode, precNode, node, precedingNeighbour, edgeName, rootGraph);
Expand Down

0 comments on commit 5834619

Please sign in to comment.