From c60adf958a38818e0ca599549956bf861a9e9af3 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Tue, 19 Apr 2022 19:50:13 +0200 Subject: [PATCH] sfd --- files/routes/admin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/routes/admin.py b/files/routes/admin.py index afdf5b076..e9a405113 100644 --- a/files/routes/admin.py +++ b/files/routes/admin.py @@ -1531,10 +1531,10 @@ def admin_distinguish_comment(c_id, v): if comment.distinguish_level: comment.distinguish_level = 0 - kind = 'distinguish_comment' + kind = 'undistinguish_comment' else: comment.distinguish_level = v.admin_level - kind = 'undistinguish_comment' + kind = 'distinguish_comment' g.db.add(comment)