From e3672206e0a485dcb3f1e51899109589002fda32 Mon Sep 17 00:00:00 2001 From: nurullah Date: Mon, 3 Nov 2025 15:07:04 +0600 Subject: [PATCH] 55000s --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 63a5dde..9f9150b 100644 --- a/index.js +++ b/index.js @@ -48,7 +48,7 @@ app.get("/test-webhook", (req, res) => { // 55 sec = 55*1000 = 55000 milliseconds setTimeout(() => { res.status(200).send({ message: "Webhook received after 3 minutes!" }); - }, 180000); + }, 55000); }); const PORT = process.env.PORT || 4000;