fix: hardcode ntfy URL to ntfy.isky-homelab.com/zipair
All checks were successful
ZIPAIR Singapore Sale Monitor / check (push) Successful in 21s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-17 16:05:34 +08:00
parent d6f09a37aa
commit ec71d6a504

View File

@@ -17,7 +17,7 @@ import urllib.error
from datetime import datetime from datetime import datetime
# ── Config (set via environment variables / Gitea secrets) ────────────────── # ── 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 NTFY_TOKEN = os.environ.get("NTFY_TOKEN", "") # optional, if your ntfy requires auth
STATE_FILE = os.environ.get("STATE_FILE", "last_seen.txt") STATE_FILE = os.environ.get("STATE_FILE", "last_seen.txt")