X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5a8c4faf3ebf4e80bd41b2f281bc3c23309739d5..a9824dbc2e8763e6fff6f71db7a31cc4761cd245:/app/models/way.rb diff --git a/app/models/way.rb b/app/models/way.rb index f1c46abf3..adf8b928f 100644 --- a/app/models/way.rb +++ b/app/models/way.rb @@ -64,6 +64,10 @@ class Way < ActiveRecord::Base # and manually set to false before the actual delete. way.visible = true + # Start with no tags + way.tags = Hash.new + + # Add in any tags from the XML pt.find('tag').each do |tag| raise OSM::APIBadXMLError.new("way", pt, "tag is missing key") if tag['k'].nil? raise OSM::APIBadXMLError.new("way", pt, "tag is missing value") if tag['v'].nil?