Fix SQL errors

This commit is contained in:
Natsumi
2025-09-04 04:59:08 +12:00
parent fd217f12b4
commit 11dfc6649c
2 changed files with 2 additions and 2 deletions

View File

@@ -1092,7 +1092,7 @@ const gameLog = {
(row) => {
userId = row[0];
},
`SELECT user_id FROM gamelog_join_leave WHERE display_name = @displayName AND user_id != "" ORDER BY id DESC LIMIT 1`,
`SELECT user_id FROM gamelog_join_leave WHERE display_name = @displayName AND user_id != '' ORDER BY id DESC LIMIT 1`,
{
'@displayName': displayName
}