s3 #13

Merged
suvo merged 1 commits from tmp into master 2025-02-03 11:51:38 +00:00
1 changed files with 2 additions and 2 deletions

View File

@ -19,11 +19,11 @@ async function main() {
const { userId, gameName, gameID } = req.body;
const gameData = await collection.findOne({
childId: userId,
userId: userId,
gameName: gameName,
gameID: gameID
});
// console.log('gameData', gameData);
if (gameData) {
res.json({gameData});
} else {