streamer: fix fetching the user's block list

This commit is contained in:
William Pitcock 2018-11-20 18:47:12 +00:00
parent 3356c7d1e9
commit ece8656733
1 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@ defmodule Pleroma.Web.Streamer do
Enum.each(topics[topic] || [], fn socket ->
# Get the current user so we have up-to-date blocks etc.
user = User.get_cached_by_ap_id(socket.assigns[:user].ap_id)
blocks = user.info["blocks"] || []
blocks = user.info.blocks || []
parent = Object.normalize(item.data["object"])
@ -187,7 +187,7 @@ defmodule Pleroma.Web.Streamer do
Enum.each(topics[topic] || [], fn socket ->
# Get the current user so we have up-to-date blocks etc.
user = User.get_cached_by_ap_id(socket.assigns[:user].ap_id)
blocks = user.info["blocks"] || []
blocks = user.info.blocks || []
unless item.actor in blocks do
send(socket.transport_pid, {:text, represent_update(item, user)})