Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Oops I didn't actually change the value
  • Loading branch information
regalijan committed Feb 28, 2024
1 parent 0f6cfb9 commit 1ba4dee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/api/events-team/events/[id]/certify.ts
Expand Up @@ -5,7 +5,7 @@ export async function onRequestPost(context: RequestContext) {
return jsonError("This event is already certified", 400);

await context.env.D1.prepare(
"UPDATE events SET reached_minimum_player_count WHERE id = ?;",
"UPDATE events SET reached_minimum_player_count = 1 WHERE id = ?;",
)
.bind(context.data.event.id)
.run();
Expand Down

0 comments on commit 1ba4dee

Please sign in to comment.