This commit is contained in:
Emile Nijssen 2021-11-12 21:27:58 +00:00
parent c19cb72b6d
commit e843593b17
4 changed files with 7 additions and 3 deletions

View file

@ -19,7 +19,7 @@ module.exports = class Util {
static promisify(fn) {
// eslint-disable-next-line func-names
return function (req, res) {
return function(req, res) {
Promise.resolve().then(async () => fn(req, res))
.then(result => {
if (res.headersSent) return;