Skip to content
Snippets Groups Projects
Unverified Commit 7f4adfaf authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix follow limit validator reporting lower number past threshold (#9230)

* Fix follow limit validator reporting lower number past threshold

* Avoid floating point follow limit
parent 6d59dfa1
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ class FollowLimitValidator < ActiveModel::Validator
if account.following_count < LIMIT
LIMIT
else
account.followers_count * RATIO
[(account.followers_count * RATIO).round, LIMIT].max
end
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment