logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 07cb89823f2a33bc540fe53bd784e4b8e9197506
parent 9d67827619e7f770d7dd6cea98ad33f5cfa33991
Author: Mark Felder <feld@feld.me>
Date:   Sat,  8 Jun 2024 18:59:51 -0400

More robust validation the vapid config is set

Diffstat:

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

diff --git a/lib/pleroma/web/push.ex b/lib/pleroma/web/push.ex @@ -20,16 +20,10 @@ defmodule Pleroma.Web.Push do end def vapid_config do - Application.get_env(:web_push_encryption, :vapid_details, []) + Application.get_env(:web_push_encryption, :vapid_details, nil) end - def enabled do - case vapid_config() do - [] -> false - list when is_list(list) -> true - _ -> false - end - end + def enabled, do: match?([subject: _, public_key: _, private_key: _], vapid_config()) def send(notification) do WebPusherWorker.enqueue("web_push", %{"notification_id" => notification.id})