mirror of
https://github.com/venera-app/venera.git
synced 2025-12-15 14:41:15 +00:00
Merge pull request #649 from venera-app/feat/comment-blocking
feat: add comment keyword blocking functionality
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user