Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Oops I forgot to remove the old second statement
  • Loading branch information
regalijan committed Dec 6, 2024
1 parent c454d2a commit 436427a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/api/events-team/strikes/new.ts
Expand Up @@ -23,7 +23,7 @@ export async function onRequestPost(context: RequestContext) {

await D1.batch([
D1.prepare(
"INSERT INTO et_strikes (created_at, created_by, id, reason, user) VALUES (?, ?, ?, ?, ?); UPDATE et_members SET points = points - 100 WHERE id = ?5;",
"INSERT INTO et_strikes (created_at, created_by, id, reason, user) VALUES (?, ?, ?, ?, ?);",
).bind(now, actingUser, id, reason, user),
D1.prepare(
"UPDATE et_members SET points = points - 100 WHERE id = ?;",
Expand Down

0 comments on commit 436427a

Please sign in to comment.