Patch
All checks were successful
release-tag / release-image (push) Successful in 1m45s

This commit is contained in:
jbergner
2025-04-29 15:17:31 +02:00
parent 68e8ee65ff
commit 65646bde81

View File

@@ -731,11 +731,11 @@ func (s *server) handleNewOrder(ctx context.Context, w http.ResponseWriter, r *h
http.Error(w, "bad order", 400)
return
}
if len(req.Identifiers) == 0 {
/*if len(req.Identifiers) == 0 {
lg.Error("handleNewOrder", "req.Identifiers", "")
http.Error(w, "missing identifiers", 400)
return
}
}*/
orderID := uuid.New().String()
ordURL := fmt.Sprintf("https://%s/acme/order/%s", r.Host, orderID)