Skip to content

Commit

Permalink
FELIX-6727 : NullPointerException when using REST API to install a bu…
Browse files Browse the repository at this point in the history
…ndle
  • Loading branch information
cziegeler committed Sep 12, 2024
1 parent 396de83 commit 16d6f9b
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,7 @@ protected void doPost( HttpServletRequest req, HttpServletResponse resp )
if (req.getRequestURI().endsWith( "/install" )) {
// just send 200/OK, no content
resp.setContentLength( 0 );
resp.setStatus(200);
} else {
// redirect to URL
resp.sendRedirect( req.getRequestURI() );
Expand Down

0 comments on commit 16d6f9b

Please sign in to comment.