Skip to content

Commit

Permalink
fix: syntax error in default errorpagehandler (#3466)
Browse files Browse the repository at this point in the history
* fix: syntax error in default errorpagehandler

* fix: update changelog
  • Loading branch information
jdavenport-vervio authored Nov 7, 2024
1 parent 36543cd commit 2c7ae4a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com)

## Unreleased ([details][unreleased changes details])

### Fixed
- #3463 - Fixed syntax error in errorpagehandler default.jsp file

## 6.9.2 - 2024-11-04

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
final ErrorPageHandlerService errorPageHandlerService = sling.getService(ErrorPageHandlerService.class);
if (errorPageHandlerService != null && errorPageHandlerService.isEnabled() && && errorPageHandlerService.shouldRequestUseErrorPageHandler(slingRequest)) {
if (errorPageHandlerService != null && errorPageHandlerService.isEnabled() && errorPageHandlerService.shouldRequestUseErrorPageHandler(slingRequest)) {
final int status = errorPageHandlerService.getStatusCode(slingRequest);
if (status >= SlingHttpServletResponse.SC_INTERNAL_SERVER_ERROR &&
Expand Down

0 comments on commit 2c7ae4a

Please sign in to comment.