From 607c9e4b9a0ab2b04c99f215b494ffbfcc2cccee Mon Sep 17 00:00:00 2001 From: kernelfail Date: Thu, 18 Jun 2020 23:13:01 +0300 Subject: [PATCH] fix RemoteLinkStatus --- issue.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/issue.go b/issue.go index 86d51411..1471983b 100644 --- a/issue.go +++ b/issue.go @@ -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.