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
Trying to add a basic issue to a project, I get a Null Reference. I have tried it with copying the issue fields from an existing issue, and same problem.
This is the code, and the login works and the project is fetched:
var project = jira.GetProject("CONNECT2");
var issueType = new Jira.SDK.Domain.IssueType(10100, "Feedback");
var issueFields = new Jira.SDK.Domain.IssueFields
{
Summary = "Site Feedback",
Description = model.FeedbackText,
IssueType = issueType
};
project.CreateIssue(issueFields);
The text was updated successfully, but these errors were encountered:
Is there a resolution to this? I am having the same issue. Minimal setup, null reference from within Jira.SDK.JiraClient.AddIssue(IssueFields issueFields)
Trying to add a basic issue to a project, I get a Null Reference. I have tried it with copying the issue fields from an existing issue, and same problem.
This is the code, and the login works and the project is fetched:
The text was updated successfully, but these errors were encountered: