Poll notification: notify for polls even when block_from_strangers is set

This commit is contained in:
Alex Gleason 2021-07-18 10:48:37 -05:00
parent 0114754db2
commit cbd1a10c16
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 8 additions and 2 deletions

View File

@ -631,11 +631,17 @@ defmodule Pleroma.Notification do
:block_from_strangers,
%Activity{} = activity,
%User{notification_settings: %{block_from_strangers: true}} = user,
_opts
opts
) do
actor = activity.data["actor"]
follower = User.get_cached_by_ap_id(actor)
!User.following?(follower, user)
cond do
opts[:type] == "poll" -> false
user.ap_id == actor -> false
!User.following?(follower, user) -> true
true -> false
end
end
# To do: consider defining recency in hours and checking FollowingRelationship with a single SQL