Merge pull request #1691 from mluto/socketio-decode-cookie-session

Decode the sessionID before sending it to the server
This commit is contained in:
John McLear 2013-03-31 09:35:02 -07:00
commit 0b2c67e998
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!