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.
2 parents 1801e5c + 2c85370 commit e73e1aaCopy full SHA for e73e1aa
certified-connectors/DocuSignDemo/script.csx
@@ -3482,7 +3482,7 @@ public class Script : ScriptBase
3482
{
3483
foreach(var tab in tabTypes.Value)
3484
3485
- if((tab["tabLabel"].ToString()).Equals(tabLabel))
+ if(tab["tabLabel"] != null && (tab["tabLabel"].ToString()).Equals(tabLabel))
3486
3487
newBody["name"] = tab["name"];
3488
newBody["value"] = tab["value"];
0 commit comments