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
reject object typed idempotency key
  • Loading branch information
icecrasher321 committed Mar 11, 2026
commit 781cc282373053de7b9a65e6836e50e166d8069c
2 changes: 1 addition & 1 deletion apps/sim/lib/webhooks/processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1064,7 +1064,7 @@ export async function queueWebhookExecution(
const value = idempotencyField
.split('.')
.reduce((acc: any, key: string) => acc?.[key], body)
if (value !== undefined && value !== null) {
if (value !== undefined && value !== null && typeof value !== 'object') {
headers['x-sim-idempotency-key'] = String(value)
}
Comment thread
icecrasher321 marked this conversation as resolved.
}
Expand Down
Loading