diff --git a/exp/lighthorizon/actions/main.go b/exp/lighthorizon/actions/main.go index c091dad1ab..f7d784e503 100644 --- a/exp/lighthorizon/actions/main.go +++ b/exp/lighthorizon/actions/main.go @@ -61,6 +61,8 @@ func sendPageResponse(w http.ResponseWriter, page hal.Page) { if err != nil { log.Error(err) sendErrorResponse(w, http.StatusInternalServerError, "") + } else { + w.Header().Set("Content-Type", "application/hal+json; charset=utf-8") } }