]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/way.rb
Say which way is too long.
[rails.git] / app / models / way.rb
index 8788bd671b1e2ffdd9b1c9bd82c8f371edabc45a..e2641873284d5e84de69b47a220ed4c7cfbd6655 100644 (file)
@@ -234,7 +234,7 @@ class Way < ActiveRecord::Base
   def preconditions_ok?(old_nodes = [])
     return false if self.nds.empty?
     if self.nds.length > APP_CONFIG['max_number_of_way_nodes']
-      raise OSM::APITooManyWayNodesError.new(self.nds.length, APP_CONFIG['max_number_of_way_nodes'])
+      raise OSM::APITooManyWayNodesError.new(self.id, self.nds.length, APP_CONFIG['max_number_of_way_nodes'])
     end
 
     # check only the new nodes, for efficiency - old nodes having been checked last time and can't