From 1dd76e8e8a50f973c89ad3ef117d5a9f030eb457 Mon Sep 17 00:00:00 2001 From: abdullaalsulaiti Date: Thu, 7 Sep 2023 12:31:14 +0300 Subject: [PATCH] Fixed Comment Issue --- albumy/blueprints/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/albumy/blueprints/main.py b/albumy/blueprints/main.py index e526d50..631ae24 100644 --- a/albumy/blueprints/main.py +++ b/albumy/blueprints/main.py @@ -362,6 +362,7 @@ def delete_comment(comment_id): and not current_user.can('MODERATE'): abort(403) db.session.delete(comment) + db.session.commit() flash('Comment deleted.', 'info') return redirect(url_for('.show_photo', photo_id=comment.photo_id))