diff options
author | Louise Crow <louise.crow@gmail.com> | 2012-12-06 10:50:46 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2012-12-06 14:15:58 +0000 |
commit | 9540745fd41c5799636b4b5341c8c0f0ee32852f (patch) | |
tree | fa2a3e058322eefe4a64f303bb7d27194d97ea42 | |
parent | 1d4ef88e60bcecc5c413cf3b6e6cb76f4bb6eaa1 (diff) |
Reformat for line length.
-rw-r--r-- | app/models/incoming_message.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/models/incoming_message.rb b/app/models/incoming_message.rb index 868bec910..a2d65a9ac 100644 --- a/app/models/incoming_message.rb +++ b/app/models/incoming_message.rb @@ -709,7 +709,9 @@ class IncomingMessage < ActiveRecord::Base text = '' attachments = self.get_attachments_for_display for attachment in attachments - text += MailHandler.get_attachment_text_one_file(attachment.content_type, attachment.body, attachment.charset) + text += MailHandler.get_attachment_text_one_file(attachment.content_type, + attachment.body, + attachment.charset) end # Remove any bad characters text = Iconv.conv('utf-8//IGNORE', 'utf-8', text) |