]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/amf_controller.rb
more madness
[rails.git] / app / controllers / amf_controller.rb
index aaad3fe11a80dda263f8b6063b2f3778a866cb82..4afba1484fd58fd9f39ff6dca1b7f6b3d7bf4afe 100644 (file)
@@ -123,7 +123,7 @@ class AmfController < ApplicationController
     points = nodes_not_used_in_area.collect { |n| [n.id, n.lon_potlatch(baselong,masterscale), n.lat_potlatch(basey,masterscale), n.tags_as_hash] }
 
     # find the relations used by those nodes and ways
-    relation_ids = (Relation.find_for_nodes_and_ways(nodes_in_area.collect {|n| n.id}, way_ids)||[]).collect {|n| n.id}.uniq
+    relation_ids = (Relation.find_for_nodes_and_ways(nodes_in_area.collect {|n| n.id}, way_ids)).collect {|n| n.id}.uniq
 
     [way_ids,points,relation_ids]
   end