logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://anongit.hacktivis.me/git/pleroma.git/
commit: 79e59cb753b5a1a2c728d367bca192de0b08ffee
parent a893c69d203498b43b4eaeb101447e08901c32c4
Author: nicole mikołajczyk <me@mkljczk.pl>
Date:   Sat, 22 Nov 2025 17:52:23 +0100

Merge branch 'status-push-notification' into 'develop'

Send push notifications for statuses from subscribed accounts

See merge request pleroma/pleroma!4396

Diffstat:

Achangelog.d/status-push-notification.fix1+
Mlib/pleroma/web/push/subscription.ex2+-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/changelog.d/status-push-notification.fix b/changelog.d/status-push-notification.fix @@ -0,0 +1 @@ +Send push notifications for statuses from subscribed accounts diff --git a/lib/pleroma/web/push/subscription.ex b/lib/pleroma/web/push/subscription.ex @@ -26,7 +26,7 @@ defmodule Pleroma.Web.Push.Subscription do end # credo:disable-for-next-line Credo.Check.Readability.MaxLineLength - @supported_alert_types ~w[follow favourite mention reblog poll pleroma:chat_mention pleroma:emoji_reaction]a + @supported_alert_types ~w[follow favourite mention status reblog poll pleroma:chat_mention pleroma:emoji_reaction]a defp alerts(%{data: %{alerts: alerts}}) do alerts = Map.take(alerts, @supported_alert_types)