Fix relative links

This commit is contained in:
rubenwardy 2018-12-25 20:25:17 +00:00
parent 0b83d2f2b5
commit c926a812d3
2 changed files with 4 additions and 2 deletions

View File

@ -22,6 +22,7 @@ from app.tasks import celery
@celery.task()
def sendVerifyEmail(newEmail, token):
print("Sending verify email!")
msg = Message("Verify email address", recipients=[newEmail])
msg.body = "This is a verification email!"
msg.html = render_template("emails/verify.html", token=token)

View File

@ -49,8 +49,9 @@ def checkForumAccount(username, forceNoSave=False):
needsSaving = True
pic = profile.avatar
needsSaving = needsSaving or pic != user.profile_pic
user.profile_pic = pic
if pic and not "http" in pic:
needsSaving = needsSaving or pic != user.profile_pic
user.profile_pic = "https://forum.minetest.net/" + pic
# Save
if needsSaving and not forceNoSave: