The PullRequestComment InReplyTo JSON tag mismatches the one returned from the API, so the value is always encoded as nil.
The current tag is in_reply_to:
|
InReplyTo *int64 `json:"in_reply_to,omitempty"` |
Whereas the correct one is in_reply_to_id. Relevant docs: https://developer.github.com/v3/pulls/comments/#get-a-single-comment
The PullRequestComment InReplyTo JSON tag mismatches the one returned from the API, so the value is always encoded as nil.
The current tag is
in_reply_to:go-github/github/pulls_comments.go
Line 17 in e96f1f1
Whereas the correct one is
in_reply_to_id. Relevant docs: https://developer.github.com/v3/pulls/comments/#get-a-single-comment