From 6ac250531754cc1255dd613c2fce5745e05ab761 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Sat, 14 Feb 2026 14:17:50 -0800 Subject: [PATCH] Fix ntfy X-Actions header YAML format from string to map The Go type for headers is []map[string]string, so the YAML entry must be a map (- Key: "value") not a quoted string (- "Key: value"). The string format silently failed unmarshaling, causing the default "View Clip" button to always appear instead of custom actions. Also fix camera URL path (added / before # fragment). Co-Authored-By: Claude Opus 4.6 --- argocd/manifests/frigate/configmap-notify.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/argocd/manifests/frigate/configmap-notify.yaml b/argocd/manifests/frigate/configmap-notify.yaml index 735ac95..ed357ad 100644 --- a/argocd/manifests/frigate/configmap-notify.yaml +++ b/argocd/manifests/frigate/configmap-notify.yaml @@ -28,4 +28,4 @@ data: server: http://ntfy.ntfy.svc.cluster.local:80 topic: frigate-alerts headers: - - "X-Actions: view, Open Event, {{.Extra.PublicURL}}/review?id={{.ID}}, clear=true; view, Open Camera, {{.Extra.PublicURL}}#/cameras/{{.Camera}}" + - X-Actions: "view, Open Event, {{.Extra.PublicURL}}/review?id={{.ID}}, clear=true; view, Open Camera, {{.Extra.PublicURL}}/#/cameras/{{.Camera}}"