Fixed bug with JSON parsing gameIDsByUserID

This commit is contained in:
Charles Chong 2014-03-19 12:14:58 -07:00
Родитель ffe4b66392
Коммит 3dfe2f50b6
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -20,7 +20,9 @@ function newGame(client, data, userID, callback) {
} else if (!resp) {
resp = JSON.stringify([data.id]);
} else {
resp.push(data.id);
respData = JSON.parse(resp);
respData.push(data.id);
resp = JSON.stringify(respData)
}
client.hset('gameIDsByUserID', userID, resp);
callback(null, data);