From 7b7bafea7e0159f5d31f7a3ac616702eacce5086 Mon Sep 17 00:00:00 2001 From: rhino Date: Fri, 10 Apr 2026 21:52:55 +0000 Subject: [PATCH] Update app.py --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 6a4f8c4..ecd31ca 100644 --- a/app.py +++ b/app.py @@ -48,7 +48,7 @@ def send_ntfy(title, message, priority="default", tags=None): if tags: headers["Tags"] = ",".join(tags) if NTFY_TOKEN: - headers["Authorization"] = f"Bearer {NTFY_TOKEN}" + headers["Authorization"] = f"Basic {NTFY_TOKEN}" requests.post(NTFY_URL, data=message.encode("utf-8"), headers=headers, timeout=10)