sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit 3cc385207fd171ba292f4d946306dc3248587810
parent 3997571addb59573de1b0dc5c6ba48c2478254a7
Author: wmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Date:   Thu,  4 Jan 2007 02:42:47 +0000

bugfix


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

Diffstat:
M lib/sup/modes/reply-mode.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/sup/modes/reply-mode.rb b/lib/sup/modes/reply-mode.rb
@@ -22,7 +22,7 @@ class ReplyMode < EditMessageMode
       if @m.recipient_email
         AccountManager.account_for(@m.recipient_email)
       else
-        (@m.to + @m.cc).argfind { |p| AccountManager.is_account? p }
+        (@m.to + @m.cc).find { |p| AccountManager.is_account? p }
       end || AccountManager.default_account
 
     from_email = @m.recipient_email || from.email