aboutsummaryrefslogtreecommitdiff
path: root/app/tasks/forumtasks.py
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2018-12-25 20:25:17 +0000
committerrubenwardy <rw@rubenwardy.com>2018-12-25 20:25:17 +0000
commitc926a812d341b3efb7d22f2b339be2f2d9cc7029 (patch)
tree339a223a057f7e3b8921888da3c957a1f30f1930 /app/tasks/forumtasks.py
parent0b83d2f2b5461c402120b089e2686c1ce4c63b25 (diff)
downloadcheatdb-c926a812d341b3efb7d22f2b339be2f2d9cc7029.tar.xz
Fix relative links
Diffstat (limited to 'app/tasks/forumtasks.py')
-rw-r--r--app/tasks/forumtasks.py5
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: