Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sattvikc committed Oct 19, 2023
1 parent eb9a171 commit a8e7d66
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public JsonObject toJson() {
JsonObject result = new Gson().toJsonTree(this).getAsJsonObject();

// These properties need to retain null values when serialized
if (this.authorizationEndpoint != null) {
if (this.authorizationEndpointQueryParams != null) {
result.add("authorizationEndpointQueryParams",
new GsonBuilder().serializeNulls().create().toJsonTree(this.authorizationEndpointQueryParams));
} else {
Expand Down

0 comments on commit a8e7d66

Please sign in to comment.