From: Steve Goldman Date: Fri, 7 Nov 2008 20:04:33 +0000 (-0500) Subject: don't downcase names before looking them up in the alias to person map, since keys... X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=e7afdc2e3d20bbf7d23cb64c93a1dda9e5a21a8f;p=sup don't downcase names before looking them up in the alias to person map, since keys in that map aren't downcased. --- 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