generic response without specific error message

This commit is contained in:
jackiettran
2026-01-15 16:37:01 -05:00
parent 1b6f782648
commit a3ef343326

View File

@@ -112,7 +112,7 @@ router.post("/", async (req, res) => {
// Still return 200 to prevent Stripe retries for processing errors // Still return 200 to prevent Stripe retries for processing errors
// Failed payouts will be handled by retry job // Failed payouts will be handled by retry job
res.json({ received: true, eventId: event.id, error: error.message }); res.json({ received: true, eventId: event.id });
} }
}); });