Don't cast object type and ID to string in case they are nil

This commit is contained in:
Tom Hughes 2013-05-07 17:39:11 +01:00
parent 6e2c9ce258
commit 2b99d77962

View file

@ -175,8 +175,8 @@ class GeocoderController < ApplicationController
min_lat,max_lat,min_lon,max_lon = place.attributes["boundingbox"].to_s.split(",")
prefix_name = t "geocoder.search_osm_nominatim.prefix.#{klass}.#{type}", :default => type.gsub("_", " ").capitalize
prefix = t "geocoder.search_osm_nominatim.prefix_format", :name => prefix_name
object_type = place.attributes["osm_type"].to_s
object_id = place.attributes["osm_id"].to_s
object_type = place.attributes["osm_type"]
object_id = place.attributes["osm_id"]
@results.push({:lat => lat, :lon => lon,
:min_lat => min_lat, :max_lat => max_lat,