diff options
author | francis <francis> | 2007-12-31 03:58:25 +0000 |
---|---|---|
committer | francis <francis> | 2007-12-31 03:58:25 +0000 |
commit | a05f51e212922959482aed24186c6ed53e8ba3ce (patch) | |
tree | 70c8f6d16574f127e60da03e9d5079384cc15598 | |
parent | 829759c1433d1db95da52edb018121090e52099e (diff) |
Remove debugging.
-rw-r--r-- | app/models/incoming_message.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/incoming_message.rb b/app/models/incoming_message.rb index fe132307f..17d1babfa 100644 --- a/app/models/incoming_message.rb +++ b/app/models/incoming_message.rb @@ -19,7 +19,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: incoming_message.rb,v 1.17 2007-12-31 02:53:18 francis Exp $ +# $Id: incoming_message.rb,v 1.18 2007-12-31 03:58:25 francis Exp $ class IncomingMessage < ActiveRecord::Base belongs_to :info_request @@ -115,7 +115,7 @@ class IncomingMessage < ActiveRecord::Base if text_charset == 'us-ascii' # Emails say US ASCII, but mean Windows-1252 # XXX How do we autodetect this properly? - text = text_charset + "\n\n" + Iconv.conv('utf-8', 'windows-1252', text) + text = Iconv.conv('utf-8', 'windows-1252', text) end end |