Skip to content

Commit

Permalink
Fixed logout page, to not render the hamburger menu
Browse files Browse the repository at this point in the history
  • Loading branch information
rorylshanks committed Mar 17, 2024
1 parent 8932a48 commit c119c2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/http.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ app.get(redirectBasePath + '/logout', async (req, res) => {
if (req.session.loggedin) {
await redisHelper.logUserOutAllSessions(req.session.userId)
}
var html = await errorpages.renderErrorPage(200, "LOGOUT_SUCCESS", req)
var html = await errorpages.renderErrorPage(200, "LOGOUT_SUCCESS")
res.send(html)
})

Expand Down

0 comments on commit c119c2d

Please sign in to comment.