mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-08 22:51:30 -07:00
enforce steam ticket validation
This commit is contained in:
@@ -179,7 +179,7 @@ async function getUsernames(db: D1Database, ids: number[]): Promise<Map<number,
|
||||
const { results } = await db
|
||||
.prepare(
|
||||
`SELECT account_id AS id, json_extract(data, '$.username') AS username
|
||||
FROM accounts WHERE account_id IN (${placeholders(ids.length)})`
|
||||
FROM account WHERE account_id IN (${placeholders(ids.length)})`
|
||||
)
|
||||
.bind(...ids)
|
||||
.all<{ id: number; username: string }>()
|
||||
|
||||
Reference in New Issue
Block a user