From: Dessalines Date: Tue, 5 May 2020 01:14:24 +0000 (-0400) Subject: Adding a comment on what comment.read is. X-Git-Url: http://these/git/?a=commitdiff_plain;h=f1692a07fc5a704f1e18317bb61d444ae6870866;p=lemmy.git Adding a comment on what comment.read is. --- diff --git a/server/src/db/comment.rs b/server/src/db/comment.rs index 59c2ccd2..2e8b54c3 100644 --- a/server/src/db/comment.rs +++ b/server/src/db/comment.rs @@ -21,7 +21,7 @@ pub struct Comment { pub parent_id: Option, pub content: String, pub removed: bool, - pub read: bool, + pub read: bool, // Whether the recipient has read the comment or not pub published: chrono::NaiveDateTime, pub updated: Option, pub deleted: bool,