Skip to content

Commit aaa9d16

Browse files
committed
fix(confluence): read webhookSecret instead of secret in signature verification
1 parent 061defe commit aaa9d16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/sim/lib/webhooks/processor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ export async function verifyProviderAuth(
709709
}
710710

711711
if (foundWebhook.provider === 'confluence') {
712-
const secret = providerConfig.secret as string | undefined
712+
const secret = providerConfig.webhookSecret as string | undefined
713713

714714
if (secret) {
715715
const signature = request.headers.get('X-Hub-Signature')

0 commit comments

Comments
 (0)