X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/05514ced0c121c1e936bec0e301faa4a04cc3a30..3f2ba044e54c3529c3afc531ab1c18b16c432be8:/app/controllers/messages_controller.rb diff --git a/app/controllers/messages_controller.rb b/app/controllers/messages_controller.rb index 6af860671..54850d403 100644 --- a/app/controllers/messages_controller.rb +++ b/app/controllers/messages_controller.rb @@ -26,13 +26,14 @@ class MessagesController < ApplicationController if current_user.sent_messages.where("sent_on >= ?", Time.now.getutc - 1.hour).count >= MAX_MESSAGES_PER_HOUR flash[:error] = t ".limit_exceeded" + render :action => "new" elsif @message.save flash[:notice] = t ".message_sent" Notifier.message_notification(@message).deliver_now redirect_to :action => :inbox - return + else + render :action => "new" end - render :action => "new" end # Allow the user to reply to another message.