💄 simplify utf-8 conversion

This commit is contained in:
Arpit Jalan 2015-01-19 15:21:39 +05:30
parent dae39b5b71
commit 5287669116
1 changed files with 1 additions and 3 deletions

View File

@ -146,9 +146,7 @@ module Email
return nil if object.nil?
if object.charset
# convert UTF8 charset to UTF-8
object.charset = object.charset.gsub(/utf8/i, "UTF-8") if object.charset.downcase == "utf8"
object.body.decoded.force_encoding(object.charset).encode("UTF-8").to_s
object.body.decoded.force_encoding(object.charset.gsub(/utf8/i, "UTF-8")).encode("UTF-8").to_s
else
object.body.to_s
end