Skip to content

Commit

Permalink
Merge pull request #74 from shweta-mane/master
Browse files Browse the repository at this point in the history
In JSON extractor allow null value for pagination session stop condition
  • Loading branch information
booddu authored Sep 9, 2022
2 parents b4c38cf + 1418aa3 commit 4a2d54c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ private String retrieveSessionKeyValue(JsonElement input) {
if (e.getAsJsonObject().has(member)) {
e = e.getAsJsonObject().get(member);
if (!members.hasNext()) {
return e.getAsString();
return e.isJsonNull() ? "null" : e.getAsString();
}
}
}
Expand Down

0 comments on commit 4a2d54c

Please sign in to comment.