forked from AkkomaGang/akkoma
show warning if VAPID is not set
This commit is contained in:
parent
8b4397c704
commit
bac58b1524
1 changed files with 5 additions and 3 deletions
|
@ -18,11 +18,11 @@ def start_link() do
|
||||||
def init(:ok) do
|
def init(:ok) do
|
||||||
case Application.get_env(:web_push_encryption, :vapid_details) do
|
case Application.get_env(:web_push_encryption, :vapid_details) do
|
||||||
nil ->
|
nil ->
|
||||||
Logger.error(
|
Logger.warn(
|
||||||
"VAPID key pair is not found. Please, add VAPID configuration to config. Run `mix web_push.gen.keypair` mix task to create a key pair"
|
"VAPID key pair is not found. Please, add VAPID configuration to config. Run `mix web_push.gen.keypair` mix task to create a key pair"
|
||||||
)
|
)
|
||||||
|
|
||||||
{:error, %{}}
|
:ignore
|
||||||
|
|
||||||
_ ->
|
_ ->
|
||||||
{:ok, %{}}
|
{:ok, %{}}
|
||||||
|
@ -30,7 +30,9 @@ def init(:ok) do
|
||||||
end
|
end
|
||||||
|
|
||||||
def send(notification) do
|
def send(notification) do
|
||||||
GenServer.cast(Pleroma.Web.Push, {:send, notification})
|
if Application.get_env(:web_push_encryption, :vapid_details) do
|
||||||
|
GenServer.cast(Pleroma.Web.Push, {:send, notification})
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def handle_cast(
|
def handle_cast(
|
||||||
|
|
Loading…
Reference in a new issue