Bugfix - Only update the modified time on the comment if its not mark as read

pull/122/head
Dessalines 5 years ago
parent d31513d7b9
commit 897fa78e89

@ -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…
Cancel
Save