diff --git a/drama/routes/posts.py b/drama/routes/posts.py index 8810b47e4..08f743901 100644 --- a/drama/routes/posts.py +++ b/drama/routes/posts.py @@ -1085,7 +1085,7 @@ def delete_post_pid(pid, v): for chunk in x.iter_content(1024): file.write(chunk) - image = upload_from_file("resizing", "resizing", (50, 50)) + image = upload_from_file("resizing", "resizing", (100, 100)) u.profileurl = image u.resized = True g.db.add(u) diff --git a/drama/routes/users.py b/drama/routes/users.py index 613fe4fe5..fae5fce4d 100644 --- a/drama/routes/users.py +++ b/drama/routes/users.py @@ -39,7 +39,7 @@ def leaderboard(v): for chunk in x.iter_content(1024): file.write(chunk) - image = upload_from_file("resizing", "resizing", (50, 50)) + image = upload_from_file("resizing", "resizing", (100, 100)) u.profileurl = image u.resized = True g.db.add(u)