diff options
author | Alex Gleason <alex@alexgleason.me> | 2021-07-18 11:03:56 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2021-07-18 11:03:56 -0500 |
commit | d06e0a3312d38e24533aeb90c233f77d7712c11b (patch) | |
tree | 6685db886151cdf6ebf73e0445027cb1b19d12e3 /lib | |
parent | f314726ea738287335b57cfa8a35c84c306c7ab0 (diff) | |
download | pleroma-poll-notification-fixes.tar.gz |
Poll notification: only notify local userspoll-notification-fixes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/notification.ex | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/pleroma/notification.ex b/lib/pleroma/notification.ex index 9c7415f29..31544570f 100644 --- a/lib/pleroma/notification.ex +++ b/lib/pleroma/notification.ex @@ -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) |