From: wmorgan Date: Sat, 1 Sep 2007 06:29:01 +0000 (+0000) Subject: bugfix: message body decoding X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;h=77c87a5487894bd6c41d1c04b1ff0e8c74590a5c;p=sup bugfix: message body decoding git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@557 5c8cc53c-5e98-4d25-b20a-d8db53a31250 --- diff --git a/lib/sup/message.rb b/lib/sup/message.rb index 1c300dd..2b13e97 100644 --- a/lib/sup/message.rb +++ b/lib/sup/message.rb @@ -357,7 +357,7 @@ private ## otherwise, it's body text else - body = Message.convert_from m.body, m.charset + body = Message.convert_from m.decode, m.charset text_to_chunks body.normalize_whitespace.split("\n") end end