1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-04 04:56:12 +02: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,
});