mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 00:14:20 +08:00
14 lines
303 B
Ruby
14 lines
303 B
Ruby
# frozen_string_literal: true
|
|
|
|
module HttpUserAgentEncoder
|
|
def self.ensure_utf8(user_agent)
|
|
return "" unless user_agent
|
|
|
|
if user_agent.encoding != Encoding::UTF_8
|
|
user_agent = user_agent.encode!("utf-8", invalid: :replace, undef: :replace).scrub!
|
|
end
|
|
|
|
user_agent || ""
|
|
end
|
|
end
|