Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Expiration needs to be in seconds not ms
  • Loading branch information
regalijan committed Oct 20, 2023
1 parent e2c98cc commit 62592e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/api/game-appeals/[id]/deny.ts
Expand Up @@ -13,7 +13,7 @@ export async function onRequestPost(context: RequestContext) {
await context.env.DATA.put(
`gameappealblock_${appealData.roblox_id}`,
`${Date.now() + 2592000000}`,
{ expirationTtl: 2592000000 },
{ expirationTtl: 2592000 },
);

return new Response(null, {
Expand Down

0 comments on commit 62592e6

Please sign in to comment.