Skip to content
Snippets Groups Projects
Commit aa71139e authored by Karen Konou's avatar Karen Konou
Browse files

Fix elixir 1.8 vs 1.7 format conflict

parent fe4c1d26
No related branches found
No related tags found
No related merge requests found
......@@ -204,8 +204,7 @@ defmodule Pleroma.Web.Streamer do
parent = Object.normalize(item.data["object"])
unless is_nil(parent) or item.actor in blocks or item.actor in mutes or
not ActivityPub.contain_activity(item, user) or
parent.data["actor"] in blocks or
not ActivityPub.contain_activity(item, user) or parent.data["actor"] in blocks or
parent.data["actor"] in mutes do
send(socket.transport_pid, {:text, represent_update(item, user)})
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment