diff --git a/CHANGELOG.md b/CHANGELOG.md index f9df59dc5b..e3038ff6dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +#### v2.4.3 (2022-08-18) + +##### Chores + +* incrementing version number - v2.4.2 (3aa7b855) +* update changelog for v2.4.2 (ba7a3466) +* incrementing version number - v2.4.1 (60cbd148) +* incrementing version number - v2.4.0 (4834cde3) +* incrementing version number - v2.3.1 (d2425942) +* incrementing version number - v2.3.0 (046ea120) + +##### Bug Fixes + +* #10845, disallow inline viewing of uploaded html files (4dc7fa05) + #### v2.4.2 (2022-08-17) ##### Chores diff --git a/src/controllers/authentication.js b/src/controllers/authentication.js index 7b8af8e885..10b93e2bf5 100644 --- a/src/controllers/authentication.js +++ b/src/controllers/authentication.js @@ -471,7 +471,7 @@ authenticationController.logout = async function (req, res, next) { try { await user.auth.revokeSession(sessionID, uid); - await logoutAsync(); + await logoutAsync(req); await destroyAsync(req); res.clearCookie(nconf.get('sessionKey'), meta.configs.cookie.get());