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
Executing event, err := client.GetProjectEvent(org, project, eventId) returns this error:
event, err := client.GetProjectEvent(org, project, eventId)
json: cannot unmarshal bool into Go struct field Event.metadata of type string
Event metadata appears to be defined as:
Metadata *map[string]string json:"metadata,omitempty"`
Metadata *map[string]string
Looking at the response, there can be non string data types like this boolean:
"metadata": { "display_title_with_tree_label": false }
This change resolves the error:
Metadata *map[string]interface{} json:"metadata,omitempty"
json:"metadata,omitempty"
The text was updated successfully, but these errors were encountered:
JAX-124: Fix atlassian#40
fcbd666
No branches or pull requests
Executing
event, err := client.GetProjectEvent(org, project, eventId)
returns this error:Event metadata appears to be defined as:
Looking at the response, there can be non string data types like this boolean:
This change resolves the error:
The text was updated successfully, but these errors were encountered: