Merge pull request #394 from muety/nil-fix

fix: 500 on POST /api/heartbeats
This commit is contained in:
Ferdinand Mütsch 2022-08-12 14:37:33 +02:00 committed by GitHub
commit 99a3e8f5da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -79,6 +79,12 @@ func (h *HeartbeatApiHandler) Post(w http.ResponseWriter, r *http.Request) {
machineName := r.Header.Get("X-Machine-Name")
for _, hb := range heartbeats {
if hb == nil {
w.WriteHeader(http.StatusBadRequest)
w.Write([]byte("invalid heartbeat object"))
return
}
hb.OperatingSystem = opSys
hb.Editor = editor
hb.Machine = machineName