Browse Source

Follow request authorizations faster

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
57f7cf8349
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/models/follow_request.rb

+ 1
- 1
app/models/follow_request.rb View File

@ -13,7 +13,7 @@ class FollowRequest < ApplicationRecord
def authorize!
account.follow!(target_account)
FeedManager.instance.merge_into_timeline(target_account, account)
MergeWorker.perform_async(target_account.id, account.id)
destroy!
end

Loading…
Cancel
Save