Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public Route.Handler apply(@NonNull Route.Handler next) {
// Return context to mark as handled
return ctx;
} else if (result instanceof Mono mono) {
mono.subscribe(
mono.defaultIfEmpty(ctx.getResponseCode()).subscribe(
value -> {
// fire after:
after(ctx, value, null);
Expand Down