logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: cbd1a10c16db026fac96fa2ddcb05b4eb106d290
parent 0114754db2d9dde25b31729644f898f20121de27
Author: Alex Gleason <alex@alexgleason.me>
Date:   Sun, 18 Jul 2021 10:48:37 -0500

Poll notification: notify for polls even when block_from_strangers is set

Diffstat:

Mlib/pleroma/notification.ex10++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/lib/pleroma/notification.ex b/lib/pleroma/notification.ex @@ -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