From: Thomas Wood Date: Wed, 6 May 2009 19:55:25 +0000 (+0000) Subject: One final (I've checked the rest now!) mis-referenced id, plus make the error msg... X-Git-Tag: live~7480 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/d7fd3fb6e571e106b6f9613687e657299104d131 One final (I've checked the rest now!) mis-referenced id, plus make the error msg simpler. --- diff --git a/app/models/way.rb b/app/models/way.rb index 1480361e0..16c93f608 100644 --- a/app/models/way.rb +++ b/app/models/way.rb @@ -253,7 +253,7 @@ class Way < ActiveRecord::Base check_consistency(self, new_way, user) rel = RelationMember.find(:first, :joins => :relation, :conditions => [ "visible = ? AND member_type='Way' and member_id=? ", true, self.id]) - raise OSM::APIPreconditionFailedError.new("You need to make sure that the way with id: #{self.id} is not a member of the relation with id #{rel.id}.") if rel + raise OSM::APIPreconditionFailedError.new("Way #{self.id} still used by relation #{rel.relation.id}.") if rel self.changeset_id = new_way.changeset_id self.changeset = new_way.changeset