Skip to content

Commit

Permalink
Merge pull request #375 from LiUSemWeb/374-hefquin-service-query-para…
Browse files Browse the repository at this point in the history
…meter-parsing-bug

resolves issue #374
  • Loading branch information
keski authored Dec 19, 2024
2 parents abe8a6b + a8b9456 commit 12bd74f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public String readRequestBody( HttpServletRequest request ) throws IOException {
final StringBuilder body = new StringBuilder();
String line;
while ( (line = reader.readLine()) != null ) {
body.append( line );
body.append( line + "\n" );
}
return body.toString();
}
Expand Down

0 comments on commit 12bd74f

Please sign in to comment.