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
This commit is contained in:
Claude
2026-04-21 18:42:08 +00:00
parent c5474714be
commit cdaca67d31
+1
View File
@@ -22,6 +22,7 @@ if [ ! -f "$CONFIG" ]; then
fi fi
source "$CONFIG" source "$CONFIG"
source "$SCRIPT_DIR/.env" 2>/dev/null || true
NTFY_ENABLED="${NTFY_ENABLED:-false}" NTFY_ENABLED="${NTFY_ENABLED:-false}"
NTFY_URL="${NTFY_URL:-}" NTFY_URL="${NTFY_URL:-}"