From 65646bde816a771d8595f570ab103be7e5baa9ad Mon Sep 17 00:00:00 2001 From: jbergner Date: Tue, 29 Apr 2025 15:17:31 +0200 Subject: [PATCH] Patch --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 7adf0f3..a9895e9 100644 --- a/main.go +++ b/main.go @@ -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)