Skip to content
Snippets Groups Projects
Commit b3c29ece authored by Eugen Rochko's avatar Eugen Rochko
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 330401be
No related merge requests found
...@@ -14,7 +14,7 @@ class FollowLimitValidator < ActiveModel::Validator ...@@ -14,7 +14,7 @@ class FollowLimitValidator < ActiveModel::Validator
if account.following_count < LIMIT if account.following_count < LIMIT
LIMIT LIMIT
else else
account.followers_count * RATIO [(account.followers_count * RATIO).round, LIMIT].max
end end
end 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