sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit 8f72f1c15baa9275d49c38fd328f4c8b40ca0907
parent 45a7b3df5f5a64ab0e628525b899001b3364e662
Author: wmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Date:   Mon, 11 Jun 2007 15:53:55 +0000

fixed missing 'me'

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

Diffstat:
M lib/sup/account.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/sup/account.rb b/lib/sup/account.rb
@@ -43,7 +43,7 @@ class AccountManager
     end
   end
 
-  def is_account? p; @accounts.member? p; end
+  def is_account? p; @email_map.member?(p.email); end
   def account_for email
     @email_map[email] || @alternate_map[email] || @alternate_map.argfind { |k, v| k === email && v }
   end