summaryrefslogtreecommitdiffstats
path: root/app/models/mail_handler.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2015-08-15 06:44:14 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2015-08-15 06:44:14 +0000
commit4e8f1f92b33c13b363a6863f81cd1d4785508314 (patch)
treeaa81cd8beff6011fdbf681173e5a6c34c97e300b /app/models/mail_handler.rb
parent519ad3b03d3cbb81ebbb4616c34296ff4c6558bb (diff)
downloadredmine-4e8f1f92b33c13b363a6863f81cd1d4785508314.tar.gz
redmine-4e8f1f92b33c13b363a6863f81cd1d4785508314.zip
#downcase no longer needed after r14484 (#20369).
git-svn-id: http://svn.redmine.org/redmine/trunk@14498 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/mail_handler.rb')
-rw-r--r--app/models/mail_handler.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/mail_handler.rb b/app/models/mail_handler.rb
index 269b0c4fa..8cdc57945 100644
--- a/app/models/mail_handler.rb
+++ b/app/models/mail_handler.rb
@@ -543,7 +543,7 @@ class MailHandler < ActionMailer::Base
end
def find_assignee_from_keyword(keyword, issue)
- keyword = keyword.to_s.downcase
+ keyword = keyword.to_s
assignable = issue.assignable_users
assignee = nil
assignee ||= assignable.detect {|a|