commit 194bb0f382a0eaec20f5b6577a7780c451980d15
parent b53244c4c77e7acecf4eac3c8f64254340457cd5
Author: iostpa <iostpa@iostpa.com>
Date: Tue, 3 Mar 2026 18:09:38 +0200
Is this the fix?
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/index.js b/index.js
@@ -209,7 +209,7 @@ const fastify = Fastify({
await fastify.register(middie);
fastify.use(webhookPath, middleware);
-fastify.listen({ port, host }, () => {
+await fastify.listen({ port, host }, () => {
console.log(`Server is listening for events at: ${localWebhookUrl}`);
console.log('Press Ctrl + C to quit.');
});