Decode the sessionID before sending it to the server since our separator ',' gets encoded

This commit is contained in:
mluto 2013-03-31 11:30:01 +02:00
parent 9c36d6f58b
commit 1793e93ea1
2 changed files with 2 additions and 2 deletions

View File

@ -191,7 +191,7 @@ function handshake()
createCookie("token", token, 60);
}
var sessionID = readCookie("sessionID");
var sessionID = decodeURIComponent(readCookie("sessionID"));
var password = readCookie("password");
var msg = {

View File

@ -116,7 +116,7 @@ function init() {
//sends a message over the socket
function sendSocketMsg(type, data)
{
var sessionID = readCookie("sessionID");
var sessionID = decodeURIComponent(readCookie("sessionID"));
var password = readCookie("password");
var msg = { "component" : "pad", // FIXME: Remove this stupidity!