1
0
Fork 0

fixed username bug

This commit is contained in:
gschwab 2015-02-27 15:23:43 +01:00
parent cdfcdb071a
commit 285be2a7d3
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@
path = path.slice(0, path.length - 2).join("/");
if (username) {
res.set("Location", path + "/changePassword.html" + "?n=" + username + "&t=" + token);
res.set("Location", path + "/changePassword.html" + "?n=" + username.user + "&t=" + token);
} else {
res.set("Location", path + "/invalid.html");
}