mirror of
https://github.com/jlengrand/github-api.git
synced 2026-04-04 15:50:52 +00:00
Merge pull request #431 from Rechi/fixPRLabels
[fix] fetch labels with HTTP GET method
This commit is contained in:
@@ -400,7 +400,7 @@ public class GHPullRequest extends GHIssue {
|
||||
|
||||
private void fetchIssue() throws IOException {
|
||||
if (!fetchedIssueDetails) {
|
||||
new Requester(root).to(getIssuesApiRoute(), this);
|
||||
new Requester(root).method("GET").to(getIssuesApiRoute(), this);
|
||||
fetchedIssueDetails = true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user