Changeset 3736
- Timestamp:
- 08/12/08 18:14:16
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/libtinymail-camel/tny-camel-mime-part.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r3734 r3736 1 2008-08-12 Thomas Monjalon <thomas.monjalon@openwide.fr> 2 3 * libtinymail-camel/tny-camel-mime-part.c: convert only plain text 4 parts to UTF-8. 5 * Patch commited by Sergio Villar Senin 6 1 7 2008-08-06 Sergio Villar Senin <svillar@igalia.com> 2 8 trunk/libtinymail-camel/tny-camel-mime-part.c
r3707 r3736 782 782 } 783 783 784 if (camel_content_type_is (wrapper->mime_type, "text", " *"))784 if (camel_content_type_is (wrapper->mime_type, "text", "plain")) 785 785 bytes = (gssize) camel_stream_format_text (wrapper, cstream); 786 786 else … … 946 946 camel_stream_reset (wrapper->stream); 947 947 948 if (camel_content_type_is (wrapper->mime_type, "text", " *"))948 if (camel_content_type_is (wrapper->mime_type, "text", "plain")) 949 949 bytes = camel_stream_format_text (wrapper, stream); 950 950 else
