Fix delivery to CC.

This commit is contained in:
lain 2018-02-18 16:59:41 +01:00
parent 8567feed47
commit deaad6d97a
2 changed files with 4 additions and 3 deletions

View File

@ -280,10 +280,10 @@ def make_user_from_nickname(nickname) do
def publish(actor, activity) do
{:ok, followers} = User.get_followers(actor)
remote_inboxes = Pleroma.Web.Salmon.remote_users(activity) ++ followers
remote_inboxes = (Pleroma.Web.Salmon.remote_users(activity) ++ followers)
|> Enum.filter(fn (user) -> User.ap_enabled?(user) end)
|> Enum.map(fn (%{info: %{"source_data" => data}}) ->
(data["endpoints"] && data["endpoints"]["sharedInbox"]) ||data["inbox"]
(data["endpoints"] && data["endpoints"]["sharedInbox"]) || data["inbox"]
end)
|> Enum.uniq

View File

@ -138,7 +138,8 @@ def encode(private_key, doc) do
{:ok, salmon}
end
def remote_users(%{data: %{"to" => to}}) do
def remote_users(%{data: %{"to" => to} = data}) do
to = to ++ (data["cc"] || [])
to
|> Enum.map(fn(id) -> User.get_cached_by_ap_id(id) end)
|> Enum.filter(fn(user) -> user && !user.local end)