commit: 291feba6f113588cce4f06206754b31eba60044b
parent: 63f097979990bf5ba9db848b8a253056bad781af
Author: Eugen Rochko <eugen@zeonfederated.com>
Date: Wed, 4 Oct 2017 01:22:33 +0200
Follow up to #5172, clean up notifications after mute like after block (#5198)
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/app/services/mute_service.rb b/app/services/mute_service.rb
@@ -3,7 +3,8 @@
class MuteService < BaseService
def call(account, target_account)
return if account.id == target_account.id
- FeedManager.instance.clear_from_timeline(account, target_account)
- account.mute!(target_account)
+ mute = account.mute!(target_account)
+ BlockWorker.perform_async(account.id, target_account.id)
+ mute
end
end