Also make this maybe_ for consistency

This commit is contained in:
Mark Felder 2021-02-04 14:33:49 -06:00
commit af37a5c51a
3 changed files with 6 additions and 6 deletions

View file

@ -38,7 +38,7 @@ defmodule Mix.Tasks.Pleroma.Email do
invisible: false
})
|> Pleroma.Repo.chunk_stream(500)
|> Stream.each(&Pleroma.User.try_send_confirmation_email(&1))
|> Stream.each(&Pleroma.User.maybe_send_confirmation_email(&1))
|> Stream.run()
end
end