💄 simplify utf-8 conversion
This commit is contained in:
parent
dae39b5b71
commit
5287669116
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue