mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-03 00:33:49 +03:00
add missing interpolation xd
This commit is contained in:
parent
d6ea0d817e
commit
7c1d9565ba
@ -41,8 +41,8 @@ export class AlterLastTimePlayedToDatime1716776027208
|
||||
for (const game of result) {
|
||||
if (!game.lastTimePlayed) continue;
|
||||
await queryRunner.query(
|
||||
`UPDATE game set lastTimePlayed = ? WHERE id = ${game.id};`,
|
||||
[game.lastTimePlayed.toUTCString()]
|
||||
`UPDATE game set lastTimePlayed = ? WHERE id = ?;`,
|
||||
[game.lastTimePlayed.toUTCString(), game.id]
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user