Handle possibility of user account in a bulk operation not having an email address

This commit is contained in:
Mark Felder 2020-09-08 16:48:54 -05:00
commit d23d0c27c2
2 changed files with 3 additions and 2 deletions

View file

@ -34,7 +34,7 @@ defmodule Mix.Tasks.Pleroma.Email do
|> Pleroma.RepoStreamer.chunk_stream(500)
|> Stream.each(fn users ->
users
|> Enum.each(fn user -> Pleroma.User.send_confirmation_email(user) end)
|> Enum.each(fn user -> Pleroma.User.try_send_confirmation_email(user) end)
end)
|> Stream.run()
end