We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1df1933 commit 722d1ebCopy full SHA for 722d1eb
apps/sim/lib/webhooks/processor.ts
@@ -601,7 +601,11 @@ export async function verifyProviderAuth(
601
if (foundWebhook.provider === 'attio') {
602
const secret = providerConfig.webhookSecret as string | undefined
603
604
- if (secret) {
+ if (!secret) {
605
+ logger.debug(
606
+ `[${requestId}] Attio webhook ${foundWebhook.id} has no signing secret, skipping signature verification`
607
+ )
608
+ } else {
609
const signature = request.headers.get('Attio-Signature')
610
611
if (!signature) {
0 commit comments