]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/notes_controller.rb
Reject attempts to create notes with no comment text
[rails.git] / app / controllers / notes_controller.rb
index e470bdbea3dd0599c69e43ca110411a01fa27125..8a00296555671f7ce4ecb3ff99ca076cbf3c0a69 100644 (file)
@@ -52,7 +52,7 @@ class NotesController < ApplicationController
     # Check the arguments are sane
     raise OSM::APIBadUserInput.new("No lat was given") unless params[:lat]
     raise OSM::APIBadUserInput.new("No lon was given") unless params[:lon]
-    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
     lon = params[:lon].to_f