We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
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:
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
in_reply_to_id
The text was updated successfully, but these errors were encountered:
Actually, this looks to be an inconsistency with the GitHub API.
Getting a comment returns in_reply_to_id: https://developer.github.com/v3/pulls/comments/#get-a-single-comment
Creating a comment takes in_reply_to: https://developer.github.com/v3/pulls/comments/#create-a-comment
Trying to create a comment with #949 returns a 422 error, in_reply_to wasn't supplied.
Sorry, something went wrong.
No branches or pull requests
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-commentThe text was updated successfully, but these errors were encountered: