|
@ -18,14 +18,13 @@ class FollowService < BaseService |
|
|
if source_account.following?(target_account) |
|
|
if source_account.following?(target_account) |
|
|
# We're already following this account, but we'll call follow! again to |
|
|
# We're already following this account, but we'll call follow! again to |
|
|
# make sure the reblogs status is set correctly. |
|
|
# make sure the reblogs status is set correctly. |
|
|
source_account.follow!(target_account, reblogs: reblogs) |
|
|
|
|
|
return |
|
|
|
|
|
|
|
|
return source_account.follow!(target_account, reblogs: reblogs) |
|
|
elsif source_account.requested?(target_account) |
|
|
elsif source_account.requested?(target_account) |
|
|
# This isn't managed by a method in AccountInteractions, so we modify it |
|
|
# This isn't managed by a method in AccountInteractions, so we modify it |
|
|
# ourselves if necessary. |
|
|
# ourselves if necessary. |
|
|
req = source_account.follow_requests.find_by(target_account: target_account) |
|
|
req = source_account.follow_requests.find_by(target_account: target_account) |
|
|
req.update!(show_reblogs: reblogs) |
|
|
req.update!(show_reblogs: reblogs) |
|
|
return |
|
|
|
|
|
|
|
|
return req |
|
|
end |
|
|
end |
|
|
|
|
|
|
|
|
ActivityTracker.increment('activity:interactions') |
|
|
ActivityTracker.increment('activity:interactions') |
|
|