From 4e0b13a0315592bfb8826172f2db48c733640bf2 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Wed, 2 May 2018 22:36:59 +0200 Subject: [PATCH] BIGFIX (fuck it) --- internal/http/upgrade/response/public.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/http/upgrade/response/public.go b/internal/http/upgrade/response/public.go index e644abb..1ba02ee 100644 --- a/internal/http/upgrade/response/public.go +++ b/internal/http/upgrade/response/public.go @@ -61,7 +61,7 @@ func (r T) Send(w io.Writer) (int, error) { headers = fmt.Sprintf("%s\r\n", headers) /* (3) Build all */ - raw := []byte(fmt.Sprintf("%s%s\r\n", responseLine, headers)) + raw := []byte(fmt.Sprintf("%s%s", responseLine, headers)) /* (4) Write */ written, err := w.Write(raw)