Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ultem
pleroma
Commits
16d8c8b3
Commit
16d8c8b3
authored
Apr 14, 2019
by
Sadposter
Browse files
Assert on the success of enqueue before returning
parent
5e455577
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/pleroma/user.ex
View file @
16d8c8b3
...
...
@@ -278,9 +278,10 @@ defmodule Pleroma.User do
def
try_send_confirmation_email
(%
User
{}
=
user
)
do
if
user
.
info
.
confirmation_pending
&&
Pleroma
.
Config
.
get
([
:instance
,
:account_activation_required
])
do
user
|>
Pleroma
.
Emails
.
UserEmail
.
account_confirmation_email
()
|>
Pleroma
.
Emails
.
Mailer
.
deliver_async
()
:ok
=
user
|>
Pleroma
.
Emails
.
UserEmail
.
account_confirmation_email
()
|>
Pleroma
.
Emails
.
Mailer
.
deliver_async
()
{
:ok
,
:enqueued
}
else
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment