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 1e2fea0 commit 87c70adCopy full SHA for 87c70ad
NSF2SQL/Form1.cs
@@ -383,7 +383,7 @@ private void bExportDocuments_Click(object sender, EventArgs ea)
383
}
384
string field = item.Name;
385
//exclude fields that start with $ and the Form field and Readers field
386
- if (excludeField.IsMatch(field))
+ if (field == null || excludeField.IsMatch(field))
387
{
388
continue;
389
0 commit comments