Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
It'll work this time I swear
  • Loading branch information
regalijan committed May 12, 2024
1 parent d265436 commit 0a68358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/api/mod-queue/[type]/list.ts
Expand Up @@ -37,7 +37,7 @@ export async function onRequestGet(context: RequestContext): Promise<any> {
AND approved ${showClosed ? "IS NOT" : "IS"} NULL
ORDER BY created_at DESC LIMIT 25;`,
)
.bind(before, !Number(showClosed))
.bind(before)
.all();
rows.results = rows.results.map((r) => {
r.user = JSON.parse(r.user);
Expand Down

0 comments on commit 0a68358

Please sign in to comment.