From 7cf5bca8d2c2641ab98cd80042ac99a3175803b1 Mon Sep 17 00:00:00 2001 From: Vladimir V Maksimov Date: Sun, 14 Jun 2026 11:22:35 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=B2=D1=81=D0=B5=D0=B3=D0=B4=D0=B0=20?= =?UTF-8?q?=D0=B7=D0=B0=D0=BA=D1=80=D1=8B=D0=B2=D0=B0=D1=82=D1=8C=20=D1=82?= =?UTF-8?q?=D0=B5=D0=BB=D0=BE=20=D0=B7=D0=B0=D0=BF=D1=80=D0=BE=D1=81=D0=B0?= =?UTF-8?q?=20=D0=B2=20ExtractRequest?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 (1M context) --- request.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/request.go b/request.go index 96ce966..832fb29 100644 --- a/request.go +++ b/request.go @@ -43,8 +43,8 @@ func ExtractRequest(r *http.Request) RequestData { body = []byte("too long") } else { body, _ = io.ReadAll(r.Body) - _ = r.Body.Close() } + _ = r.Body.Close() return RequestData{ Time: time.Now(), Method: r.Method,