Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…quencer into fix-privacy-check
  • Loading branch information
ChaituVR committed Dec 9, 2024
2 parents ff07b9f + 0f7f5ad commit a5faf82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ingestor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default async function ingestor(req) {
const formattedSignature = castArray(body.sig).join(',');
const ts = Date.now() / 1e3;
const over = 300;
const under = 60 * 60 * 24 * 3; // 3 days
const under = 60 * 60 * 24 * 6; // 6 days
const overTs = (ts + over).toFixed();
const underTs = (ts - under).toFixed();
const { domain, message, types } = body.data;
Expand Down

0 comments on commit a5faf82

Please sign in to comment.