Skip to content

Commit

Permalink
Fixed bug in runtime version of toolkit, when incompatible.
Browse files Browse the repository at this point in the history
  • Loading branch information
jezzsantos committed Oct 15, 2022
1 parent 9f99dfc commit b7dbea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CLI/Infrastructure/RuntimeApiHandlers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ public StructuredToolkitCompatibilityInfo(DraftDefinition draft, ToolkitDefiniti
{
DraftCompatibility = draft.GetCompatibility(toolkit);
Toolkit = new StructuredToolkitVersionInfo(draft.Toolkit.Version, toolkit.Version);
Runtime = new StructuredToolkitVersionInfo(draft.Toolkit.RuntimeVersion,
Runtime = new StructuredToolkitVersionInfo(toolkit.RuntimeVersion,
metadata.RuntimeVersion.ToString());
ToolkitRuntimeCompatibility = toolkit.GetCompatibility(metadata);
}
Expand Down

0 comments on commit b7dbea2

Please sign in to comment.