fix typo in previous commit

This commit is contained in:
Benjamin Reis 2018-03-01 14:39:06 +01:00
parent 1ad9a0789f
commit fe79c8fdb4

View file

@ -111,7 +111,7 @@ Content ContentManager::contentListToMultipart (const list<Content> &contents) {
ContentType contentType = ContentType::Multipart;
contentType.setParameter("boundary=" + string(MultipartBoundary));
content.setContentType(ContentType::Multipart);
content.setContentType(contentType);
return content;
}