Don't cast object type and ID to string in case they are nil
This commit is contained in:
parent
6e2c9ce258
commit
2b99d77962
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue