We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c15918 commit 3813931Copy full SHA for 3813931
apps/sim/lib/webhooks/providers/zoom.ts
@@ -31,7 +31,7 @@ function validateZoomSignature(
31
32
const nowSeconds = Math.floor(Date.now() / 1000)
33
const requestSeconds = Number.parseInt(timestamp, 10)
34
- if (Number.isNaN(requestSeconds) || Math.abs(nowSeconds - requestSeconds) > 30) {
+ if (Number.isNaN(requestSeconds) || Math.abs(nowSeconds - requestSeconds) > 300) {
35
return false
36
}
37
0 commit comments