Skip to content
Snippets Groups Projects
Commit 625a950b authored by Markus Reiter's avatar Markus Reiter
Browse files

Fix `plist` parser failing when encoded with ASCII.

parent b6b98f48
No related branches found
No related tags found
No related merge requests found
......@@ -69,6 +69,11 @@ module Plist
@xml = plist_data_or_file
end
# TODO: Update vendored `plist` parser when
# https://github.com/patsplat/plist/pull/38
# is merged.
@xml.force_encoding("UTF-8")
@listener = listener
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment