Filter block users and reblogs of them from public timeline

This commit is contained in:
Eugen Rochko 2016-10-09 15:05:07 +02:00
parent 22a8801dbc
commit 769b1ebbe0
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ class PublicChannel < ApplicationCable::Channel
message = ActiveSupport::JSON.decode(encoded_message)
status = Status.find_by(id: message['id'])
next if status.nil?
next if status.nil? || current_user.account.blocking?(status.account) || (status.reblog? && current_user.account.blocking?(status.reblog.account))
message['message'] = FeedManager.instance.inline_render(current_user.account, status)