1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-24 01:11:12 +00:00

add space after comma to app/models/mail_handler.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20115 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-10-03 15:36:51 +00:00
parent 2297ce58cf
commit c4a95d5aeb

View File

@ -524,7 +524,7 @@ class MailHandler < ActionMailer::Base
def cleaned_up_subject
subject = email.subject.to_s
subject.strip[0,255]
subject.strip[0, 255]
end
def self.assign_string_attribute_with_limit(object, attribute, value, limit=nil)