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.
1 parent 64b555e commit ccf6031Copy full SHA for ccf6031
src/main/java/org/kohsuke/github/GHProjectCard.java
@@ -131,8 +131,9 @@ public GHIssue getContent() throws IOException {
131
} else {
132
issue = root().createRequest().withUrlPath(getContentUrl().getPath()).fetch(GHIssue.class);
133
}
134
- GHRepository repository =
135
- root().createRequest().withUrlPath(issue.getRepositoryUrlPath()).fetch(GHRepository.class);
+ GHRepository repository = root().createRequest()
+ .withUrlPath(issue.getRepositoryUrlPath())
136
+ .fetch(GHRepository.class);
137
issue.wrap(repository);
138
return issue;
139
} catch (FileNotFoundException e) {
0 commit comments