Skip to content

Commit

Permalink
Fix github issue fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
WalshyDev committed Dec 27, 2023
1 parent fed4d6b commit f8f1c81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class GitHubIssuesConnector extends GitHubConnector {

@Override
public void onSuccess(@Nonnull JsonElement response) {
if (response.isJsonObject()) {
if (response.isJsonArray()) {
JsonArray array = response.getAsJsonArray();

int issues = 0;
Expand Down

0 comments on commit f8f1c81

Please sign in to comment.