Added missing 'delay' and 'email' params to publish as json

This commit is contained in:
Philipp Heckel 2022-03-29 15:40:26 -04:00
parent 59b341dfb8
commit b67d9fc85d
5 changed files with 31 additions and 3 deletions

View file

@ -1135,6 +1135,12 @@ func (s *Server) transformBodyJSON(next handleFunc) handleFunc {
if m.Click != "" {
r.Header.Set("X-Click", m.Click)
}
if m.Email != "" {
r.Header.Set("X-Email", m.Email)
}
if m.Delay != "" {
r.Header.Set("X-Delay", m.Delay)
}
return next(w, r, v)
}
}