diff options
Diffstat (limited to 'app/models/follow_request.rb')
-rw-r--r-- | app/models/follow_request.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/follow_request.rb b/app/models/follow_request.rb index 936ad0691..4224ab15d 100644 --- a/app/models/follow_request.rb +++ b/app/models/follow_request.rb @@ -14,6 +14,7 @@ class FollowRequest < ApplicationRecord def authorize! account.follow!(target_account) MergeWorker.perform_async(target_account.id, account.id) + destroy! end |