summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/core/slang-http.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/slang-http.cpp b/source/core/slang-http.cpp
index 3da22ba9c..58f37666a 100644
--- a/source/core/slang-http.cpp
+++ b/source/core/slang-http.cpp
@@ -170,7 +170,7 @@ void HTTPHeader::append(StringBuilder& out) const
auto mimeType = m_mimeType.getLength() ? m_mimeType : UnownedStringSlice::fromLiteral("text/plain");
auto encoding = m_encoding.getLength() ? m_encoding : UnownedStringSlice::fromLiteral("UTF-8");
- out << "mimeType" << "; ";
+ out << mimeType << "; ";
out << "charset=" << encoding;
out << "\r\n";