Poll notification: only notify local users

This commit is contained in:
Alex Gleason 2021-07-18 11:03:56 -05:00
commit 70f1496eb8
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
2 changed files with 6 additions and 4 deletions

View file

@ -139,7 +139,7 @@ defmodule Pleroma.NotificationTest do
{:ok, notifications} = Notification.create_poll_notifications(activity)
assert [user1.id, user3.id, user2.id] == Enum.map(notifications, & &1.user_id)
assert [user2.id, user3.id, user1.id] == Enum.map(notifications, & &1.user_id)
end
describe "CommonApi.post/2 notification-related functionality" do