mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-09 19:53:08 +02:00
fix lint
This commit is contained in:
parent
99fe03bd4d
commit
e0ad066382
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue