Merge pull request #44 from jonathanong/patch-1

pass context to errors
master
TJ Holowaychuk 2013-08-31 09:17:09 -07:00
commit 9046d080be
1 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,3 @@
/** /**
* Module dependencies. * Module dependencies.
*/ */
@ -592,12 +591,12 @@ module.exports = {
// handler and log. // handler and log.
if (this.headerSent) { if (this.headerSent) {
err.headerSent = true; err.headerSent = true;
this.app.emit('error', err); this.app.emit('error', err, this);
return; return;
} }
// delegate // delegate
this.app.emit('error', err); this.app.emit('error', err, this);
// err.status support // err.status support
if (err.status) { if (err.status) {
@ -915,4 +914,4 @@ function escape(html) {
.replace(/"/g, '"') .replace(/"/g, '"')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');
} }