Skip to content

Commit 1013207

Browse files
author
Prad N
committed
refactor: consolidate error handling logic
1 parent 3743d8d commit 1013207

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/handlers/index_handler.go app/handlers/global_handler.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ func GlobalErrorHandler() echo.HTTPErrorHandler {
2828
if he, ok := err.(*echo.HTTPError); ok {
2929
c.Logger().Errorf("Error: %v", he.Message)
3030
}
31-
switch err.(type) {
31+
switch err := err.(type) {
3232
case *echo.HTTPError:
33-
code := err.(*echo.HTTPError).Code
33+
code := err.Code
3434
render.EchoTempl(c, errors.View(code))
3535
default:
3636
render.EchoTempl(c, errors.View(500))

0 commit comments

Comments
 (0)