From 8692e4521598277ebef343f541dec0ac5c001f37 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 13 Jan 2016 15:57:22 -0500 Subject: [PATCH] Fix display error --- lib/server/parse-http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/server/parse-http.js b/lib/server/parse-http.js index c5cd9d8..cb3e481 100644 --- a/lib/server/parse-http.js +++ b/lib/server/parse-http.js @@ -49,7 +49,7 @@ function parseHttpRequest (req, opts) { }) } } else { - throw new Error('invalid action in HTTP request: ' + params.action) + throw new Error('invalid action in HTTP request: ' + req.url) } return params