Merge pull request #649 from venera-app/feat/comment-blocking

feat: add comment keyword blocking functionality
This commit is contained in:
nyne
2025-11-29 15:04:51 +08:00
committed by GitHub
parent 0ce18cd738
commit 781ff2553d
6 changed files with 131 additions and 5 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();
}