From 0325ce1815492b8d07ea25dd624513286023ccb5 Mon Sep 17 00:00:00 2001 From: jzitnik-dev Date: Sat, 20 Dec 2025 20:55:42 +0100 Subject: [PATCH] chore: Don't include n8n webhook url --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index 1298f06..282c981 100644 --- a/server.js +++ b/server.js @@ -70,7 +70,7 @@ app.post("/report", async (req, res) => { return res.status(400).json({ error: "Invalid location value." }); } - const url = `https://n8n.local.jzitnik.dev/webhook/${process.env.WEBHOOK_UUID}`; + const url = process.env.REPORT_WEBHOOK_URL; let resp; try {