sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit 1500bc207e5574b22b2201cb552e4f9b520a5ab1
parent 93fadea6e543204f68ae6ea511837ebcae512f51
Author: wmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Date:   Sun, 28 Oct 2007 03:41:22 +0000

whoops, small bugfix for >From

git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@639 5c8cc53c-5e98-4d25-b20a-d8db53a31250

Diffstat:
M lib/sup/mbox/loader.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/sup/mbox/loader.rb b/lib/sup/mbox/loader.rb
@@ -69,7 +69,7 @@ class Loader < Source
       begin
         RMail::Mailbox::MBoxReader.new(@f).each_message do |input|
           m = RMail::Parser.read(input)
-          if m.body
+          if m.body && m.body.is_a?(String)
             m.body.gsub!(/^>From /, "From ")
           end
           return m