From 6fb6fce6f8b75884b92e1889c150403fc0872c5e Mon Sep 17 00:00:00 2001 From: Robbie Trencheny Date: Wed, 28 Feb 2018 01:25:48 -0800 Subject: [PATCH] Add charset to text/plain Content-Type (#119) --- expfmt/expfmt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expfmt/expfmt.go b/expfmt/expfmt.go index 371ac750..c71bcb98 100644 --- a/expfmt/expfmt.go +++ b/expfmt/expfmt.go @@ -26,7 +26,7 @@ const ( // The Content-Type values for the different wire protocols. FmtUnknown Format = `` - FmtText Format = `text/plain; version=` + TextVersion + FmtText Format = `text/plain; version=` + TextVersion + `; charset=utf-8` FmtProtoDelim Format = ProtoFmt + ` encoding=delimited` FmtProtoText Format = ProtoFmt + ` encoding=text` FmtProtoCompact Format = ProtoFmt + ` encoding=compact-text`