From 1b38aad76a71f7b79c392362e9d5bb89592c1280 Mon Sep 17 00:00:00 2001 From: Lucid Date: Tue, 21 Oct 2025 00:03:21 -0400 Subject: [PATCH] Created a timeout for starting webhook mode to allow traefik to expose the webhook server and assign an SSL cert. --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 5aad83b..97e1211 100644 --- a/src/main.ts +++ b/src/main.ts @@ -84,7 +84,7 @@ async function startWebhook(config: WebhookConfig) { url: config.botWebhook }); }); - }, 25000); + }, 60000); }); }