From ceebdfbf85267a32175db7fa83e25a1594983448 Mon Sep 17 00:00:00 2001 From: frankpagan Date: Sat, 29 Jun 2024 19:16:23 -0500 Subject: [PATCH] fix: comment typo --- src/server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server.js b/src/server.js index 961841a..fa0170d 100644 --- a/src/server.js +++ b/src/server.js @@ -58,7 +58,7 @@ class CoCreateLazyLoader { } if (valideUrl.pathname.startsWith('/webhooks/')) { - let name = req.url.split('/')[2]; // Assuming URL structure is /webhook/name/... + let name = req.url.split('/')[2]; // Assuming URL structure is /webhooks/name/... if (this.modules[name]) { this.executeScriptWithTimeout(name, { req, res, host: hostname, organization, valideUrl, organization_id: organization._id }) } else {