From: ThibG Date: Fri, 31 Aug 2018 13:17:31 +0000 (+0200) Subject: Self-notify on accepting follow requests (#8541) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=0b62585748ffb7bb6c754bdfaad1d1a302dedace;p=mastodon.git Self-notify on accepting follow requests (#8541) --- diff --git a/app/controllers/api/v1/follow_requests_controller.rb b/app/controllers/api/v1/follow_requests_controller.rb index 313fe2f81..e9aca5f8a 100644 --- a/app/controllers/api/v1/follow_requests_controller.rb +++ b/app/controllers/api/v1/follow_requests_controller.rb @@ -13,6 +13,7 @@ class Api::V1::FollowRequestsController < Api::BaseController def authorize AuthorizeFollowService.new.call(account, current_account) + NotifyService.new.call(current_account, Follow.find_by(account: account, target_account: current_account)) render_empty end