aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/rfc822/MCAttachment.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/rfc822/MCAttachment.cpp')
-rw-r--r--src/core/rfc822/MCAttachment.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/rfc822/MCAttachment.cpp b/src/core/rfc822/MCAttachment.cpp
index e6ebc9c9..0881c9a8 100644
--- a/src/core/rfc822/MCAttachment.cpp
+++ b/src/core/rfc822/MCAttachment.cpp
@@ -548,12 +548,12 @@ Attachment * Attachment::attachmentWithSingleMIME(struct mailmime * mime)
mailmime_single_fields_init(&single_fields, mime->mm_mime_fields, mime->mm_content_type);
encoding = encodingForMIMEEncoding(single_fields.fld_encoding, data->dt_encoding);
-
+
Data * mimeData;
mimeData = Data::dataWithBytes(bytes, (unsigned int) length);
mimeData = mimeData->decodedDataUsingEncoding(encoding);
result->setData(mimeData);
-
+
str = get_content_type_str(mime->mm_content_type);
result->setMimeType(String::stringWithUTF8Characters(str));
free(str);