From ec71d6a50418238622f179189d264bd453428338 Mon Sep 17 00:00:00 2001 From: isky Date: Sun, 17 May 2026 16:05:34 +0800 Subject: [PATCH] fix: hardcode ntfy URL to ntfy.isky-homelab.com/zipair Co-Authored-By: Claude Sonnet 4.6 --- check_zipair.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_zipair.py b/check_zipair.py index e3f8792..019c748 100644 --- a/check_zipair.py +++ b/check_zipair.py @@ -17,7 +17,7 @@ import urllib.error from datetime import datetime # ── Config (set via environment variables / Gitea secrets) ────────────────── -NTFY_URL = os.environ.get("NTFY_URL", "https://ntfy.example.com/zipair-alert") +NTFY_URL = os.environ.get("NTFY_URL", "https://ntfy.isky-homelab.com/zipair") NTFY_TOKEN = os.environ.get("NTFY_TOKEN", "") # optional, if your ntfy requires auth STATE_FILE = os.environ.get("STATE_FILE", "last_seen.txt")