feat: add comment keyword blocking functionality

This commit is contained in:
2025-11-29 14:52:24 +08:00
parent 053293839e
commit 38b5947c0a
5 changed files with 114 additions and 3 deletions

View File

@@ -21,7 +21,7 @@ class _CommentsPartState extends State<_CommentsPart> {
@override
void initState() {
comments = widget.comments;
comments = widget.comments.where((c) => !_shouldBlockComment(c)).toList();
super.initState();
}