From 5692b52dc4c4187871202b69e6f5524a9d345167 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Thu, 25 Nov 2021 22:54:46 +0200 Subject: [PATCH] fdsfsd --- files/routes/admin.py | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/files/routes/admin.py b/files/routes/admin.py index 43bae14f8..8bd3710ba 100644 --- a/files/routes/admin.py +++ b/files/routes/admin.py @@ -815,19 +815,15 @@ def ban_user(user_id, v): if 'reason' in request.values: if reason.startswith("/post/"): - try: - post = int(reason.split("/post/")[1]) - post = get_post(post) - post.bannedfor = True - g.db.add(post) - except: pass - elif reason.startswith("/comment/"): - try: - comment = int(reason.split("/comment/")[1]) - comment = get_comment(comment) - comment.bannedfor = True - g.db.add(comment) - except: pass + post = int(reason.split("/post/")[1].split(None, 1)[0]) + post = get_post(post) + post.bannedfor = True + g.db.add(post) + elif reason.startswith("/comment/"): + comment = int(reason.split("/comment/")[1].split(None, 1)[0]) + comment = get_comment(comment) + comment.bannedfor = True + g.db.add(comment) g.db.commit() if 'redir' in request.values: return redirect(user.url)