sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit e7afdc2e3d20bbf7d23cb64c93a1dda9e5a21a8f
parent cebbdd7a577005095a5afbca2eb4f1ac14fc5293
Author: Steve Goldman <sgoldman@tower-research.com>
Date:   Fri,  7 Nov 2008 15:04:33 -0500

don't downcase names before looking them up in the alias to person map, since keys in that map aren't downcased.

Diffstat:
M lib/sup/buffer.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/sup/buffer.rb b/lib/sup/buffer.rb
@@ -506,7 +506,7 @@ EOS
     answer = BufferManager.ask_many_emails_with_completions domain, question, completions, default
 
     if answer
-      answer.split_on_commas.map { |x| ContactManager.contact_for(x.downcase) || PersonManager.person_for(x) }
+      answer.split_on_commas.map { |x| ContactManager.contact_for(x) || PersonManager.person_for(x) }
     end
   end