Add JSON publishing support

This commit is contained in:
binwiederhier
2026-01-08 15:45:50 -05:00
parent 1ab7ca876c
commit 66ea25c18b
2 changed files with 15 additions and 0 deletions

View File

@@ -2027,6 +2027,9 @@ func (s *Server) transformBodyJSON(next handleFunc) handleFunc {
if m.Firebase != "" {
r.Header.Set("X-Firebase", m.Firebase)
}
if m.SequenceID != "" {
r.Header.Set("X-Sequence-ID", m.SequenceID)
}
return next(w, r, v)
}
}