mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-29 15:51:14 +00:00
Fix mark as read.
This commit is contained in:
parent
524711e05e
commit
57a7de64c0
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ export class Post extends Component<any, PostState> {
|
||||||
UserService.Instance.user.id == parent_user_id
|
UserService.Instance.user.id == parent_user_id
|
||||||
) {
|
) {
|
||||||
let form: MarkCommentAsRead = {
|
let form: MarkCommentAsRead = {
|
||||||
comment_id: found.creator.id,
|
comment_id: found.comment.id,
|
||||||
read: true,
|
read: true,
|
||||||
auth: authField(),
|
auth: authField(),
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue