]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/friendships_controller.rb
Merge pull request #5331 from AntonKhorev/trace-badges-text-bg
[rails.git] / app / controllers / friendships_controller.rb
index 7b14f2e820799d3c9f47a2092cbdcbe646d552cc..8f0c1ad859c4332eb46c81d82db4e28d6a8fe755 100644 (file)
@@ -19,8 +19,8 @@ class FriendshipsController < ApplicationController
       friendship.befriendee = @friend
       if current_user.friends_with?(@friend)
         flash[:warning] = t ".already_a_friend", :name => @friend.display_name
-      elsif current_user.friendships.where("created_at >= ?", Time.now.utc - 1.hour).count >= current_user.max_friends_per_hour
-        flash.now[:error] = t ".limit_exceeded"
+      elsif current_user.friendships.where(:created_at => Time.now.utc - 1.hour..).count >= current_user.max_friends_per_hour
+        flash[:error] = t ".limit_exceeded"
       elsif friendship.save
         flash[:notice] = t ".success", :name => @friend.display_name
         UserMailer.friendship_notification(friendship).deliver_later