1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-06-27 00:21:07 +02:00

Merge pull request #303 from kernelfail/master

fix RemoteLinkStatus
This commit is contained in:
Matt Finkel
2020-10-24 22:16:27 -05:00
committed by GitHub

View File

@ -585,8 +585,8 @@ type RemoteLinkIcon struct {
// RemoteLinkStatus if the link is a resolvable object (issue, epic) - the structure represent its status
type RemoteLinkStatus struct {
Resolved bool
Icon *RemoteLinkIcon
Resolved bool `json:"resolved,omitempty" structs:"resolved,omitempty"`
Icon *RemoteLinkIcon `json:"icon,omitempty" structs:"icon,omitempty"`
}
// GetWithContext returns a full representation of the issue for the given issue key.