fix two crashes

This commit is contained in:
Ben Lubar
2016-03-20 15:11:32 -05:00
parent e556ae93ea
commit 3c607f2612
2 changed files with 4 additions and 4 deletions

View File

@@ -41,7 +41,7 @@ helpers.redirect = function(res, url) {
if (res.locals.isAPI) { if (res.locals.isAPI) {
res.status(308).json(url); res.status(308).json(url);
} else { } else {
res.redirect(nconf.get('relative_path') + url); res.redirect(nconf.get('relative_path') + encodeURI(url));
} }
}; };

View File

@@ -13,7 +13,7 @@ module.exports = function(middleware) {
req = this.req, req = this.req,
defaultFn = function(err, str){ defaultFn = function(err, str){
if (err) { if (err) {
return req.next(err); return next(err);
} }
self.send(str); self.send(str);