Skip to content

Commit

Permalink
Merge pull request #1124 from mcneel/1.21
Browse files Browse the repository at this point in the history
Update TransactionalComponent.cs
  • Loading branch information
kike-garbo authored May 27, 2024
2 parents a259367 + 0618f54 commit 538463a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ void AddRuntimeMessage(ARDB.FailureMessageAccessor error, bool? solved = null)
return;
}

if (severity == ARDB.FailureSeverity.Warning && FailureDefinitionIdsToFix.Contains(failureId))
if (severity == ARDB.FailureSeverity.Warning && FailureDefinitionIdsToFix?.Contains(failureId) is true)
return;

var level = GH_RuntimeMessageLevel.Remark;
Expand Down

0 comments on commit 538463a

Please sign in to comment.