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 8e3a0cd commit 4454618Copy full SHA for 4454618
Engine/ScriptAnalyzer.cs
@@ -580,11 +580,11 @@ private List<ExternalRule> GetExternalRule(string[] moduleNames)
580
581
if ((null != helpContent) && ( 1 == helpContent.Count))
582
{
583
- dynamic description = helpContent[0].Properties["Description"].Value;
+ dynamic description = helpContent[0].Properties["Description"];
584
585
if (null != description)
586
587
- desc = description[0].Text;
+ desc = description.Value[0].Text;
588
}
589
590
0 commit comments