diff options
-rw-r--r-- | app/models/outgoing_message.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/outgoing_message.rb b/app/models/outgoing_message.rb index e59ca4bd4..8240eb784 100644 --- a/app/models/outgoing_message.rb +++ b/app/models/outgoing_message.rb @@ -141,7 +141,7 @@ class OutgoingMessage < ActiveRecord::Base end def body - text = read_attribute(:body).dup + text = raw_body.dup return text if text.nil? text = clean_text(text) |