From 463307db860edf70e00d38dfadff17b12aba777d Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Wed, 20 Dec 2017 08:29:28 -0500 Subject: [PATCH] pass URL to 404 handler --- lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/index.js b/lib/index.js index 5d5a7bb..c4d745e 100644 --- a/lib/index.js +++ b/lib/index.js @@ -179,7 +179,7 @@ function not_found(req, res) { title: 'Not found', status: 404, method: req.method, - url + url: req.url })); }