Closed saabi closed 11 years ago
When I initially downloaded jingo through git, it was hanging on every request.
After looking at the code I noticed that express-validator wasn't being instantiated properly.
Instead of:
app.use(expValidator);
it should be
app.use(expValidator());
I just noticed somebody else found the same error and created an issue. Sorry about posting the issue twice!
Oh, interesting. I guess this problem is with new version(s) of node. OK, I'll merge it. Thanks!
When I initially downloaded jingo through git, it was hanging on every request.
After looking at the code I noticed that express-validator wasn't being instantiated properly.
Instead of:
it should be