X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ff9f596cea152b43bdd3d0daf124eb59b459dada..2acdfd71322fd29b4ce58efd1810b496469ef5cb:/app/models/way.rb diff --git a/app/models/way.rb b/app/models/way.rb index eb4bf48f4..97f44c117 100644 --- a/app/models/way.rb +++ b/app/models/way.rb @@ -199,8 +199,8 @@ class Way < ActiveRecord::Base def update_from(new_way, user) check_consistency(self, new_way, user) - if !new_way.preconditions_ok? - raise OSM::APIPreconditionFailedError.new + unless new_way.preconditions_ok? + raise OSM::APIPreconditionFailedError("Cannot update way #{self.id}: data is invalid.") end self.changeset_id = new_way.changeset_id @@ -213,8 +213,8 @@ class Way < ActiveRecord::Base def create_with_history(user) check_create_consistency(self, user) - if !self.preconditions_ok? - raise OSM::APIPreconditionFailedError.new + unless self.preconditions_ok? + raise OSM::APIPreconditionFailedError("Cannot create way: data is invalid.") end self.version = 0 self.visible = true