From: Tom Hughes Date: Thu, 17 Nov 2011 11:33:48 +0000 (+0000) Subject: Spell way_id correctly X-Git-Tag: live~5994 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/5a98d6e4f190d1b141695b8dd3bfb9d17bfcadee?hp=4ab734ee1b1fadad369650230ec5e5932862c5a9 Spell way_id correctly --- diff --git a/app/models/old_way.rb b/app/models/old_way.rb index c2af4f21c..00642cdb3 100644 --- a/app/models/old_way.rb +++ b/app/models/old_way.rb @@ -137,7 +137,7 @@ class OldWay < ActiveRecord::Base id = n; reuse = curnode.visible if oldnode.lat != curnode.lat or oldnode.lon != curnode.lon or oldnode.tags != curnode.tags then # node has changed: if it's in other ways, give it a new id - if curnode.ways-[self.node_id] then id=-1; reuse=false end + if curnode.ways-[self.way_id] then id=-1; reuse=false end end points << [oldnode.lon, oldnode.lat, id, curnode.version, oldnode.tags_as_hash, reuse] end