From cdaca67d3123fa3f39d73e86df259a483390b339 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 21 Apr 2026 18:42:08 +0000 Subject: [PATCH] notify.sh: source .env so NTFY_URL and other creds are available Notification config (NTFY_URL, MM_NOTIFY_CHANNEL_ID, etc.) lives in .env but notify.sh was only sourcing sky-cam.conf, so notifications were silently skipped even when configured. https://claude.ai/code/session_01C4jbd3waXG3eKZYbGUjLUQ --- notify.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/notify.sh b/notify.sh index 8f580f9..f6cf746 100755 --- a/notify.sh +++ b/notify.sh @@ -22,6 +22,7 @@ if [ ! -f "$CONFIG" ]; then fi source "$CONFIG" +source "$SCRIPT_DIR/.env" 2>/dev/null || true NTFY_ENABLED="${NTFY_ENABLED:-false}" NTFY_URL="${NTFY_URL:-}"