logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 8f8319852ca8ff3b1b8f163b184e58122ec5b3fb
parent: 75f416a4925c3cb60c5a4919cdafc45392b3be00
Author: alpaca-tc <alpaca-tc@alpaca.tc>
Date:   Sun, 16 Apr 2017 21:55:43 +0900

Fixed NoMethodError in UnfollowService (#1918)


Diffstat:

Mapp/services/unfollow_service.rb1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/app/services/unfollow_service.rb b/app/services/unfollow_service.rb @@ -6,6 +6,7 @@ class UnfollowService < BaseService # @param [Account] target_account Which to unfollow def call(source_account, target_account) follow = source_account.unfollow!(target_account) + return unless follow NotificationWorker.perform_async(build_xml(follow), source_account.id, target_account.id) unless target_account.local? UnmergeWorker.perform_async(target_account.id, source_account.id) end