We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cb38c7 commit 9f366cdCopy full SHA for 9f366cd
framework/auth/views.py
@@ -989,8 +989,7 @@ def resend_confirmation_post(auth):
989
if user:
990
if throttle_period_expired(user.email_last_sent, settings.SEND_EMAIL_THROTTLE):
991
try:
992
- send_confirm_email_async(user, clean_email, renew=True)
993
- # send_confirm_email(user, clean_email, renew=True)
+ send_confirm_email(user, clean_email, renew=True)
994
except KeyError:
995
# already confirmed, redirect to dashboard
996
status_message = f'This email {clean_email} has already been confirmed.'
0 commit comments