We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm querying an issue by ID and with some fields and custom fields.
When I look for a field by name, I can get the entity (in this case, an instance of SimpleProjectCustomField):
SimpleProjectCustomField
As you can see, the field's properties are duplicated. In the case of Value, it's once set as null and the other time with the actual correct value.
Value
null
When reading the value, I always get the null one.
The text was updated successfully, but these errors were encountered:
I worked around the issue casting the field to SimpleIssueCustomField (e.g. ((SimpleIssueCustomField)employeeName)).
SimpleIssueCustomField
((SimpleIssueCustomField)employeeName)
I'm unsure as to why this is necessary though.
Sorry, something went wrong.
No branches or pull requests
I'm querying an issue by ID and with some fields and custom fields.
When I look for a field by name, I can get the entity (in this case, an instance of
SimpleProjectCustomField
):As you can see, the field's properties are duplicated.
In the case of
Value
, it's once set asnull
and the other time with the actual correct value.When reading the value, I always get the
null
one.The text was updated successfully, but these errors were encountered: