Merge pull request #1770 from okriuchykhin/ok_SCI_3376

Force UTF-8 encoding for Table contents in API [SCI-3376]
This commit is contained in:
Alex Kriuchykhin 2019-05-15 13:56:01 +02:00 committed by GitHub
commit ae456a6408
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ module Api
end end
def table_contents def table_contents
object.table&.contents object.table&.contents&.force_encoding(Encoding::UTF_8)
end end
end end
end end