raise OSM::APIBadUserInput.new("No text was given") if params[:text].blank?
# Extract the arguments
- lon = params[:lon].to_f
- lat = params[:lat].to_f
+ begin
+ lon = Float(params[:lon])
+ rescue
+ raise OSM::APIBadUserInput.new("lon was not a number")
+ end
+ begin
+ lat = Float(params[:lat])
+ rescue
+ raise OSM::APIBadUserInput.new("lat was not a number")
+ end
comment = params[:text]
# Include in a transaction to ensure that there is always a note_comment for every note