From 5d1bfeaa9a189ef955d9aaab06a1d5a99e608a3e Mon Sep 17 00:00:00 2001 From: Untone Date: Mon, 16 Dec 2024 20:07:56 +0300 Subject: [PATCH] headercase --- services/webhook.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/webhook.py b/services/webhook.py index d3a59459..c57961a3 100644 --- a/services/webhook.py +++ b/services/webhook.py @@ -28,7 +28,7 @@ async def check_webhook_existence(): headers = { "Content-Type": "application/json", - "x-authorizer-admin-secret": ADMIN_SECRET + "X-Authorizer-Admin-Secret": ADMIN_SECRET } operation = "GetWebhooks" @@ -63,7 +63,7 @@ async def create_webhook_endpoint(): headers = { "Content-Type": "application/json", - "x-authorizer-admin-secret": ADMIN_SECRET, + "X-Authorizer-Admin-Secret": ADMIN_SECRET } exists, webhook_id, current_endpoint = await check_webhook_existence()