Skip to content

Commit

Permalink
danielgerlag#1155: coalesce null
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztof-skowronek committed Nov 7, 2023
1 parent f7fc3aa commit cb14daa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WorkflowCore/Services/WorkflowActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ internal static void Enrich(WorkflowStep workflowStep)
activity.DisplayName += $" step {stepName}";
activity.SetTag("workflow.step.id", workflowStep.Id);
activity.SetTag("workflow.step.name", workflowStep.Name);
activity.SetTag("workflow.step.type", workflowStep.BodyType.Name);
activity.SetTag("workflow.step.type", workflowStep.BodyType?.Name);
}
}

Expand Down

0 comments on commit cb14daa

Please sign in to comment.