We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bf87b4 commit 6e2cde7Copy full SHA for 6e2cde7
apps/sim/lib/webhooks/provider-subscriptions.ts
@@ -1447,6 +1447,13 @@ export async function createFathomWebhookSubscription(
1447
throw new Error(userFriendlyMessage)
1448
}
1449
1450
+ if (!responseBody.id) {
1451
+ fathomLogger.error(
1452
+ `[${requestId}] Fathom webhook creation returned success but no webhook ID for ${webhookData.id}.`
1453
+ )
1454
+ throw new Error('Fathom webhook created but no ID returned. Please try again.')
1455
+ }
1456
+
1457
fathomLogger.info(
1458
`[${requestId}] Successfully created webhook in Fathom for webhook ${webhookData.id}.`,
1459
{
0 commit comments