From e7afdc2e3d20bbf7d23cb64c93a1dda9e5a21a8f Mon Sep 17 00:00:00 2001 From: Steve Goldman Date: Fri, 7 Nov 2008 15:04:33 -0500 Subject: [PATCH] don't downcase names before looking them up in the alias to person map, since keys in that map aren't downcased. --- lib/sup/buffer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sup/buffer.rb b/lib/sup/buffer.rb index ebc3587..0447f61 100644 --- 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 -- 2.45.2