diff options
author | ThibG <thib@sitedethib.com> | 2018-10-30 00:47:31 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-10-30 00:47:31 +0100 |
commit | 33a71e8f7cd28aad5aa690a6d77aa83fe289f69c (patch) | |
tree | 31d2a7d2ca9dd13915387b054ea4f8fbbc78a0b3 /app/services/notify_service.rb | |
parent | e84da282f6331d463678a7e3ccd37e66c0dfcab3 (diff) |
Do not hide boost notifications from followed people with hidden boosts (#9147)
* Do not hide boost notifications from followed people with hidden boosts Not displaying boosts from a followed user in the Home timeline and not having notifications when they reblog your own content are two very separate concerns, tying them together seem counter-intuitive and unwanted. * Update specs accordingly
Diffstat (limited to 'app/services/notify_service.rb')
-rw-r--r-- | app/services/notify_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/notify_service.rb b/app/services/notify_service.rb index 49022a844..a8b7bb30b 100644 --- a/app/services/notify_service.rb +++ b/app/services/notify_service.rb @@ -31,7 +31,7 @@ class NotifyService < BaseService end def blocked_reblog? - @recipient.muting_reblogs?(@notification.from_account) + false end def blocked_follow_request? |