We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 021b353 commit 570b2a9Copy full SHA for 570b2a9
Revit_Engine/Query/Description.cs
@@ -37,6 +37,9 @@ public static partial class Query
37
[Output("description", "Human-readable description of the input property difference resulting from a Revit diffing workflow.")]
38
public static string Description(this PropertyDifference difference)
39
{
40
+ if (difference == null)
41
+ return null;
42
+
43
string propertyLabel;
44
if (difference.DisplayName.EndsWith("(RevitParameter)"))
45
propertyLabel = difference.DisplayName.Replace("(RevitParameter)", "(Revit Parameter)");
0 commit comments