Skip to content
Snippets Groups Projects
Commit ff192526 authored by Olivier Gonzalez's avatar Olivier Gonzalez Committed by Alex Reisner
Browse files

Fix Maxmind result encoding

parent 6a983d5b
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,9 @@ module Geocoder::Lookup
end
def parse_raw_data(raw_data)
CSV.parse_line raw_data
# Maxmind just returns text/plain as csv format but according to documentation,
# we get ISO-8859-1 encoded string. We need to convert it.
CSV.parse_line raw_data.force_encoding("ISO-8859-1").encode("UTF-8")
end
def reserved_result
......
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