diff options
Diffstat (limited to 'app/tasks/forumtasks.py')
-rw-r--r-- | app/tasks/forumtasks.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/tasks/forumtasks.py b/app/tasks/forumtasks.py index 9e4cbfb..05f6006 100644 --- a/app/tasks/forumtasks.py +++ b/app/tasks/forumtasks.py @@ -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: |