]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/notes_controller.rb
Reject note comments with no text
[rails.git] / app / controllers / notes_controller.rb
index 0544f8705a527af9379c2368cfdb6cf2455eacc0..e470bdbea3dd0599c69e43ca110411a01fa27125 100644 (file)
@@ -84,7 +84,7 @@ class NotesController < ApplicationController
   def comment
     # Check the arguments are sane
     raise OSM::APIBadUserInput.new("No id was given") unless params[:id]
   def comment
     # Check the arguments are sane
     raise OSM::APIBadUserInput.new("No id was given") unless params[:id]
-    raise OSM::APIBadUserInput.new("No text was given") unless params[:text]
+    raise OSM::APIBadUserInput.new("No text was given") if params[:text].blank?
 
     # Extract the arguments
     id = params[:id].to_i
 
     # Extract the arguments
     id = params[:id].to_i