mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
FIX: convert UTF8 charset to UTF-8
This commit is contained in:
parent
4fd1fdeb01
commit
fad9ca7b36
|
@ -146,6 +146,8 @@ 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
|
||||
else
|
||||
object.body.to_s
|
||||
|
|
Loading…
Reference in New Issue
Block a user