Minor fix

This commit is contained in:
calzoneman 2014-02-27 20:51:48 -06:00
parent c44e70893b
commit fd328d443d
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ function handleLogin(req, res) {
} else {
var auth = user.name + ":" + user.hash;
res.cookie("auth", auth, {
domain: Config.get("http.root-domain"),
domain: "." + Config.get("http.root-domain"),
expires: new Date(Date.now() + 7*24*60*60*1000),
httpOnly: true
});