notification: add fallback get_notified_from_activity()

This commit is contained in:
William Pitcock 2018-11-09 09:07:40 +00:00
parent b9871e7e5a
commit b3c360ce2c
1 changed files with 5 additions and 1 deletions

View File

@ -114,9 +114,11 @@ defmodule Pleroma.Notification do
end
end
def get_notified_from_activity(activity, local_only \\ true)
def get_notified_from_activity(
%Activity{data: %{"to" => _, "type" => type} = data} = activity,
local_only \\ true
local_only
)
when type in ["Create", "Like", "Announce", "Follow"] do
recipients =
@ -128,6 +130,8 @@ defmodule Pleroma.Notification do
User.get_users_from_set(recipients, local_only)
end
def get_notified_from_activity(_, local_only), do: []
defp maybe_notify_to_recipients(
recipients,
%Activity{data: %{"to" => to, "type" => type}} = activity