1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-03-21 17:39:24 -05:00
This commit is contained in:
syuilo 2024-01-22 18:32:32 +09:00
parent 99fe03bd4d
commit e0ad066382

View file

@ -693,7 +693,7 @@ export class ClientServerService {
});
// Reversi game
fastify.get<{ Params: { channel: string; } }>('/reversi/g/:game', async (request, reply) => {
fastify.get<{ Params: { game: string; } }>('/reversi/g/:game', async (request, reply) => {
const game = await this.reversiGamesRepository.findOneBy({
id: request.params.game,
});