Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(triggers): increase Zoom timestamp tolerance to 300s per Zoom docs
  • Loading branch information
waleedlatif1 committed Apr 6, 2026
commit 3813931669c8f18df840f7f4fa093f427de76f7b
2 changes: 1 addition & 1 deletion apps/sim/lib/webhooks/providers/zoom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function validateZoomSignature(

const nowSeconds = Math.floor(Date.now() / 1000)
const requestSeconds = Number.parseInt(timestamp, 10)
if (Number.isNaN(requestSeconds) || Math.abs(nowSeconds - requestSeconds) > 30) {
if (Number.isNaN(requestSeconds) || Math.abs(nowSeconds - requestSeconds) > 300) {
Comment thread
waleedlatif1 marked this conversation as resolved.
return false
}

Expand Down
Loading