Skip to content
Snippets Groups Projects
Commit f25a3f4f authored by lain's avatar lain
Browse files

Merge branch 'fix/check-follower-collection-in-is_private' into 'develop'

properly check for follower address in is_private?

See merge request pleroma/pleroma!841
parents f53dc5ee 96dcacad
No related branches found
No related tags found
No related merge requests found
......@@ -878,7 +878,12 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
end
def is_private?(activity) do
!is_public?(activity) && Enum.any?(activity.data["to"], &String.contains?(&1, "/followers"))
unless is_public?(activity) do
follower_address = User.get_cached_by_ap_id(activity.data["actor"]).follower_address
Enum.any?(activity.data["to"], &(&1 == follower_address))
else
false
end
end
def is_direct?(%Activity{data: %{"directMessage" => true}}), do: true
......
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