Skip to content

Commit

Permalink
add comment fix from andygrunwald#640
Browse files Browse the repository at this point in the history
  • Loading branch information
mt40 authored and Minh Thai committed Aug 15, 2024
1 parent 47d27a7 commit 0d65882
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -477,9 +477,9 @@ type Comment struct {
ID string `json:"id,omitempty" structs:"id,omitempty"`
Self string `json:"self,omitempty" structs:"self,omitempty"`
Name string `json:"name,omitempty" structs:"name,omitempty"`
Author User `json:"author,omitempty" structs:"author,omitempty"`
Author *User `json:"author,omitempty" structs:"author,omitempty"`
Body string `json:"body,omitempty" structs:"body,omitempty"`
UpdateAuthor User `json:"updateAuthor,omitempty" structs:"updateAuthor,omitempty"`
UpdateAuthor *User `json:"updateAuthor,omitempty" structs:"updateAuthor,omitempty"`
Updated string `json:"updated,omitempty" structs:"updated,omitempty"`
Created string `json:"created,omitempty" structs:"created,omitempty"`
Visibility CommentVisibility `json:"visibility,omitempty" structs:"visibility,omitempty"`
Expand Down

0 comments on commit 0d65882

Please sign in to comment.