Skip to content

Commit

Permalink
fix ;
Browse files Browse the repository at this point in the history
  • Loading branch information
mitasov-ra committed Jun 21, 2023
1 parent 29100c3 commit 153f870
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public Mono<T> apply(HttpServerRequest request) {
return ReactorUtils.toByteArrayMono(request.body())
.handle((bytes, sink) -> {
try {
var body = this.reader.read(bytes)
var body = this.reader.read(bytes);
if (body != null) {
sink.next();
} else {
Expand Down

0 comments on commit 153f870

Please sign in to comment.