Fix being able to import more than allowed number of follows (#15384)
* Fix being able to import more than allowed number of follows Without this commit, if someone tries importing a second list of accounts to follow before the first one has been processed, this will queue imports for the two whole lists, even if they exceed the account's allowed number of outgoing follows. This commit changes it so the individual queued imports aren't exempt from the follow limit check (they remain exempt from the rate-limiting check though). * Catch validation errors to not re-queue failed follows Co-authored-by: Claire <claire.github-309c@sitedethib.com>th-downstream
parent
7f1d08e0e1
commit
82d014fd08
@ -0,0 +1,17 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
module FollowLimitable
|
||||||
|
extend ActiveSupport::Concern
|
||||||
|
|
||||||
|
included do
|
||||||
|
validates_with FollowLimitValidator, on: :create, unless: :bypass_follow_limit?
|
||||||
|
end
|
||||||
|
|
||||||
|
def bypass_follow_limit=(value)
|
||||||
|
@bypass_follow_limit = value
|
||||||
|
end
|
||||||
|
|
||||||
|
def bypass_follow_limit?
|
||||||
|
@bypass_follow_limit
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in new issue