Add some spacing

This commit is contained in:
gregoirenovel 2018-10-15 17:37:38 +02:00
parent 76cf9ab746
commit 32b27ba111

View file

@ -11,10 +11,12 @@ class ApiAdresse::PointRetriever
def convert_api_result_to_point
result = JSON.parse(ApiAdresse::API.call(@address))
if result['features'].empty?
Rails.logger.error "unable to find location for address #{@address}"
return nil
end
RGeo::GeoJSON.decode(result['features'][0]['geometry'], json_parser: :json)
end
end