fixed the crash when going between pages, return next() in webserver.js

This commit is contained in:
Baris Soner Usakli
2013-04-28 22:26:27 -04:00
parent 58642b1e7b
commit 1fb99ab848

View File

@@ -31,7 +31,7 @@ var express = require('express'),
}));
app.use(function(req, res, next) {
// Don't bother with session handling for API requests
if (/^\/api\//.test(req.url)) next();
if (/^\/api\//.test(req.url)) return next();
if (req.session.uid === undefined) {
console.log('info: [Auth] First load, retrieving uid...');