Always return {atom, _} from try_send_confirmation

This commit is contained in:
Sadposter 2019-04-14 16:01:48 +01:00
parent ec42b639a3
commit 5e45557751
1 changed files with 3 additions and 1 deletions

View File

@ -270,7 +270,7 @@ defmodule Pleroma.User do
with {:ok, user} <- Repo.insert(changeset),
{:ok, user} <- autofollow_users(user),
{:ok, _} <- Pleroma.User.WelcomeMessage.post_welcome_message_to_user(user),
:ok <- try_send_confirmation_email(user) do
{:ok, _} <- try_send_confirmation_email(user) do
{:ok, user}
end
end
@ -281,6 +281,8 @@ defmodule Pleroma.User do
user
|> Pleroma.Emails.UserEmail.account_confirmation_email()
|> Pleroma.Emails.Mailer.deliver_async()
{:ok, :enqueued}
else
{:ok, :noop}
end