fix: return status ok for write
All checks were successful
Build and Push Server / build-and-push (push) Successful in 6m31s

This commit is contained in:
Max Richter
2025-10-31 15:24:48 +01:00
parent 7c5f9f7829
commit 3cd320637c

View File

@@ -87,7 +87,7 @@ func (h *Handler) post(w http.ResponseWriter, r *http.Request, target string) {
return
}
w.WriteHeader(http.StatusNoContent)
w.WriteHeader(http.StatusOK)
}
func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {