From fe79c8fdb4fcda483b3d8063ec7ecb9fc86c2b8d Mon Sep 17 00:00:00 2001 From: Benjamin Reis Date: Thu, 1 Mar 2018 14:39:06 +0100 Subject: [PATCH] fix typo in previous commit --- src/content/content-manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/content-manager.cpp b/src/content/content-manager.cpp index 8640014a2..94ee69ce9 100644 --- a/src/content/content-manager.cpp +++ b/src/content/content-manager.cpp @@ -111,7 +111,7 @@ Content ContentManager::contentListToMultipart (const list &contents) { ContentType contentType = ContentType::Multipart; contentType.setParameter("boundary=" + string(MultipartBoundary)); - content.setContentType(ContentType::Multipart); + content.setContentType(contentType); return content; }