From: Dessalines Date: Wed, 6 Jan 2021 21:07:13 +0000 (-0500) Subject: Fix mark as read. X-Git-Url: http://these/git/?a=commitdiff_plain;h=57a7de64c0809cff74f4439a58f0c1673dc072c0;p=lemmy-ui.git Fix mark as read. --- diff --git a/src/shared/components/post.tsx b/src/shared/components/post.tsx index 160dfcc..f7bf373 100644 --- a/src/shared/components/post.tsx +++ b/src/shared/components/post.tsx @@ -194,7 +194,7 @@ export class Post extends Component { UserService.Instance.user.id == parent_user_id ) { let form: MarkCommentAsRead = { - comment_id: found.creator.id, + comment_id: found.comment.id, read: true, auth: authField(), };