Skip to content
Snippets Groups Projects
Commit 1089d365 authored by kaniini's avatar kaniini
Browse files

user: fix up notification last calculation [NOT related to upstream]

parent 46c7c238
No related branches found
No related tags found
No related merge requests found
......@@ -467,10 +467,15 @@ defmodule Pleroma.User do
def get_notified_from_activity(%Activity{recipients: to, data: %{"type" => "Announce"} = data}) do
object = Object.normalize(data["object"])
actor = User.get_cached_by_ap_id(data["actor"])
# ensure that the actor who published the announced object appears only once
to =
(to ++ [object.data["actor"]])
if actor.nickname != nil do
(to ++ [object.data["actor"]])
else
to
end
|> Enum.uniq()
query = get_notified_from_activity_query(to)
......
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