From 7fc851e936e6cb8bac865b5030299a14944447a2 Mon Sep 17 00:00:00 2001 From: florian Date: Sat, 11 Oct 2025 19:10:48 +0200 Subject: [PATCH] Actually use the api_key --- src/send_notification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/send_notification.py b/src/send_notification.py index fea7ba5..f12f1d6 100644 --- a/src/send_notification.py +++ b/src/send_notification.py @@ -8,7 +8,7 @@ api_key= return_credentials("/etc/secrets/api_key") def send_notification(title:str,chapter:int, link:str): headers = { - "X-API-Key-Internal": backend_api_url, + "X-API-Key-Internal": api_key, "Content-Type": "application/json" }