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)