You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue AddIssue(IssueFields issueFields) method fails when issueFields.CustomFields = null when no custom fields are specified.
You should add null check to foreach (KeyValuePair<String, CustomField> customfield in issueFields.CustomFields)
or
add CustomFields = new Dictionary<string, CustomField>() to IssueFields class instantiation.
Is this project being currently worked on?
The text was updated successfully, but these errors were encountered:
Issue AddIssue(IssueFields issueFields) method fails when issueFields.CustomFields = null when no custom fields are specified.
You should add null check to foreach (KeyValuePair<String, CustomField> customfield in issueFields.CustomFields)
or
add CustomFields = new Dictionary<string, CustomField>() to IssueFields class instantiation.
Is this project being currently worked on?
The text was updated successfully, but these errors were encountered: