Fix test for errors from geocoder.ca to work properly. Closes #1213.
This commit is contained in:
parent
3e1c421852
commit
fe37259e01
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ private
|
||||||
response = fetch_xml("http://geocoder.ca/?geoit=XML&postal=#{escape_query(query)}")
|
response = fetch_xml("http://geocoder.ca/?geoit=XML&postal=#{escape_query(query)}")
|
||||||
|
|
||||||
# parse the response
|
# parse the response
|
||||||
unless response.get_elements("geodata/error")
|
if response.get_elements("geodata/error").empty?
|
||||||
results.push({:lat => response.get_text("geodata/latt").to_s,
|
results.push({:lat => response.get_text("geodata/latt").to_s,
|
||||||
:lon => response.get_text("geodata/longt").to_s,
|
:lon => response.get_text("geodata/longt").to_s,
|
||||||
:zoom => POSTCODE_ZOOM,
|
:zoom => POSTCODE_ZOOM,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue