We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07822d1 commit a9e7f36Copy full SHA for a9e7f36
apps/sim/lib/webhooks/processor.ts
@@ -1218,6 +1218,8 @@ export async function queueWebhookExecution(
1218
}
1219
1220
if (foundWebhook.provider === 'slack') {
1221
+ // Return empty 200 to avoid Slack showing an error dialog to the user,
1222
+ // even though processing failed. The error is already logged above.
1223
return new NextResponse(null, { status: 200 })
1224
1225
0 commit comments