Skip to content

Commit

Permalink
fix args
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvaroVega committed Nov 30, 2023
1 parent 451a200 commit 0657a82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ public String getValue() {
return value.getAsJsonObject().toString();
} else if (value.isJsonArray()) {
return value.getAsJsonArray().toString();
} else if (!value.isJsonNull){
} else if (!value.isJsonNull()){
return "\"" + value.getAsString() + "\"";
} else {
return "\"" + value.toString() + "\"";
Expand Down

0 comments on commit 0657a82

Please sign in to comment.