From 7bffd9aed5a809646a4614580fc71bce4dae4d78 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Thu, 19 Nov 2015 11:49:12 +0200 Subject: [PATCH] removed charset=utf-8 from default content-type, since it is implied by default --- strings.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strings.go b/strings.go index 70bd9d9..b3208ee 100644 --- a/strings.go +++ b/strings.go @@ -3,7 +3,7 @@ package fasthttp var ( defaultServerName = []byte("fasthttp server") defaultUserAgent = []byte("fasthttp client") - defaultContentType = []byte("text/plain; charset=utf-8") + defaultContentType = []byte("text/plain") ) var (