зеркало из https://github.com/mozilla/galaxy-api.git
Fixed bug with JSON parsing gameIDsByUserID
This commit is contained in:
Родитель
ab4f34d670
Коммит
eb73072346
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче