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