fix: scope

v1.18.x
Barış Soner Uşaklı 4 years ago
parent 1eda538da5
commit 3cd9434b56

@ -17,10 +17,11 @@ module.exports = function (middleware) {
middleware.processRender = function processRender(req, res, next) {
// res.render post-processing, modified from here: https://gist.github.com/mrlannigan/5051687
const { render } = res;
async function renderMethod(template, options, fn) {
res.render = async function renderOverride(template, options, fn) {
const self = this;
const { req } = this;
async function renderMethod(template, options, fn) {
options = options || {};
if (typeof options === 'function') {
fn = options;
@ -87,7 +88,6 @@ module.exports = function (middleware) {
}
}
res.render = async function renderOverride(template, options, fn) {
try {
await renderMethod(template, options, fn);
} catch (err) {

Loading…
Cancel
Save