Poll notification: only notify local users
This commit is contained in:
parent
0b1c05ca1e
commit
70f1496eb8
2 changed files with 6 additions and 4 deletions
|
|
@ -471,9 +471,11 @@ defmodule Pleroma.Notification do
|
|||
end
|
||||
|
||||
notifications =
|
||||
Enum.map([actor | voters], fn ap_id ->
|
||||
with %User{} = user <- User.get_by_ap_id(ap_id) do
|
||||
create_notification(activity, user, type: "poll")
|
||||
Enum.reduce([actor | voters], [], fn ap_id, acc ->
|
||||
with %User{local: true} = user <- User.get_by_ap_id(ap_id) do
|
||||
[create_notification(activity, user, type: "poll") | acc]
|
||||
else
|
||||
_ -> acc
|
||||
end
|
||||
end)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue