]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/changeset_controller.rb
Suppress XML parsing errors.
[rails.git] / app / controllers / changeset_controller.rb
index 09bad34bc07f3a19f69afd6ef24a7ccdaac7aa00..da066a73afa4bc703f293067ad536ea7c63536e7 100644 (file)
@@ -83,7 +83,7 @@ class ChangesetController < ApplicationController
 
     # the request is in pseudo-osm format... this is kind-of an
     # abuse, maybe should change to some other format?
-    doc = XML::Parser.string(request.raw_post).parse
+    doc = XML::Parser.string(request.raw_post, :options => XML::Parser::Options::NOERROR).parse
     doc.find("//osm/node").each do |n|
       lon << n["lon"].to_f * GeoRecord::SCALE
       lat << n["lat"].to_f * GeoRecord::SCALE