Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Actually fix game appeals this time
  • Loading branch information
regalijan committed May 13, 2024
1 parent b46e54d commit 90f7a93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/api/game-appeals/precheck.ts
Expand Up @@ -5,7 +5,7 @@ export default async function (
user: number,
): Promise<{ can_appeal?: boolean; error?: string; reason?: string }> {
if (
await context.env.D1.prepare("SELECT * FROM game_appeals WHERE user = ?;")
await context.env.D1.prepare("SELECT * FROM game_appeals WHERE roblox_id = ?;")
.bind(user)
.first()
)
Expand Down

0 comments on commit 90f7a93

Please sign in to comment.