Fixed bugs with gameIDsByUserID and developer game list filter

This commit is contained in:
Charles Chong 2014-03-19 11:44:47 -07:00
Родитель 04204e7b1f
Коммит ab4f34d670
1 изменённых файлов: 2 добавлений и 2 удалений

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

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