Browse Source

Use old rules for mention notifications as for mentions timeline

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
93577f74e7
1 changed files with 18 additions and 1 deletions
  1. +18
    -1
      app/services/notify_service.rb

+ 18
- 1
app/services/notify_service.rb View File

@ -14,10 +14,27 @@ class NotifyService < BaseService
private
def blocked_mention?
FeedManager.instance.filter?(:mentions, @notification.mention.status, @recipient)
end
def blocked_favourite?
false
end
def blocked_follow?
false
end
def blocked_reblog?
false
end
def blocked?
blocked = false
blocked = false
blocked ||= @recipient.id == @notification.from_account.id
blocked ||= @recipient.blocking?(@notification.from_account)
blocked ||= send("blocked_#{@notification.type}?")
blocked
end

Loading…
Cancel
Save