- recent_friends = Follow.where(:following => self).where(:created_at => Time.now.utc - 3600..).count
- max_friends = account_age_in_hours.ceil + recent_friends - (active_reports * 10)
- max_friends.clamp(0, Settings.max_friends_per_hour)
+ recent_follows = Follow.where(:following => self).where(:created_at => Time.now.utc - 3600..).count
+ max_follows = account_age_in_hours.ceil + recent_follows - (active_reports * 10)
+ max_follows.clamp(0, Settings.max_follows_per_hour)