mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
Bugfix - Only update the modified time on the comment if its not mark as read
This commit is contained in:
parent
b8a9da32f0
commit
73c409fd0f
1 changed files with 2 additions and 2 deletions
|
@ -1355,8 +1355,8 @@ impl Perform for EditComment {
|
|||
creator_id: self.creator_id,
|
||||
removed: self.removed.to_owned(),
|
||||
read: self.read.to_owned(),
|
||||
updated: Some(naive_now())
|
||||
};
|
||||
updated: if self.read.is_some() { None } else {Some(naive_now())}
|
||||
};
|
||||
|
||||
let _updated_comment = match Comment::update(&conn, self.edit_id, &comment_form) {
|
||||
Ok(comment) => comment,
|
||||
|
|
Loading…
Reference in a new issue