Correct WebFlux response body method
See gh-17919
This commit is contained in:
committed by
Andy Wilkinson
parent
9ac6485768
commit
6ef6875a60
@@ -171,7 +171,7 @@ public abstract class AbstractErrorWebExceptionHandler implements ErrorWebExcept
|
||||
}
|
||||
Resource resource = resolveResource(viewName);
|
||||
if (resource != null) {
|
||||
return responseBody.bodyValue(BodyInserters.fromResource(resource));
|
||||
return responseBody.body(BodyInserters.fromResource(resource));
|
||||
}
|
||||
return Mono.empty();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user