logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 136e18b875f1743a5aced6f0a07cd949f2f19a5a
parent: 65647a24720c1fa1dda832a8ce0f48f48f4cf358
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Mon,  2 Jan 2017 14:19:02 +0100

Unblocks also federate

Diffstat:

Mapp/services/unblock_service.rb5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app/services/unblock_service.rb b/app/services/unblock_service.rb @@ -2,6 +2,9 @@ class UnblockService < BaseService def call(account, target_account) - account.unblock!(target_account) if account.blocking?(target_account) + return unless account.blocking?(target_account) + + unblock = account.unblock!(target_account) + NotificationWorker.perform_async(unblock.stream_entry.id, target_account.id) unless target_account.local? end end