From 0b42e21a1b9f2f6864baead7a1942db6b037b851 Mon Sep 17 00:00:00 2001 From: Myron Blair Date: Sun, 31 May 2026 05:18:41 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20webhook=20require=20path=20=E2=80=94=20o?= =?UTF-8?q?ne=20level=20up=20not=20two=20(was=20causing=20500=20on=20all?= =?UTF-8?q?=20deliveries)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public_html/webhook.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/webhook.php b/public_html/webhook.php index 2165dd3..c9199c5 100644 --- a/public_html/webhook.php +++ b/public_html/webhook.php @@ -7,7 +7,7 @@ * WEBHOOK_SECRET is loaded from api/config.php (gitignored) — never hardcoded here. */ -require_once __DIR__ . '/../../api/config.php'; +require_once __DIR__ . '/../api/config.php'; if (!defined('WEBHOOK_SECRET')) { http_response_code(500); echo json_encode(['error' => 'Webhook not configured']);