Games 🥳

This commit is contained in:
I-Have-An-Issue 2023-01-23 00:43:54 -05:00
parent d048df3581
commit 530ba11383
No known key found for this signature in database
GPG Key ID: E55435DEA0825091
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ const GameJob = require("../../lib/classes/GameJob.js")
app.get("/:token", async (request, response) => {
const game = global.games.get(request.params.token)
return response.end(!!game)
return response.json(!!game)
})
module.exports = app