0
0
Fork 0

Force utf-8 encoding when processing XML

This commit is contained in:
Eugen Rochko 2016-11-13 19:12:40 +01:00
parent 50d3083cbd
commit 7ce4670164
4 changed files with 10 additions and 3 deletions

View file

@ -6,7 +6,9 @@ class ProcessInteractionService < BaseService
# @param [Account] target_account Account the Salmon was addressed to
def call(envelope, target_account)
body = salmon.unpack(envelope)
xml = Nokogiri::XML(body)
xml = Nokogiri::XML(body)
xml.encoding = 'utf-8'
return unless contains_author?(xml)