From f1692a07fc5a704f1e18317bb61d444ae6870866 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Mon, 4 May 2020 21:14:24 -0400 Subject: [PATCH] Adding a comment on what comment.read is. --- server/src/db/comment.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/db/comment.rs b/server/src/db/comment.rs index 59c2ccd29..2e8b54c3b 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,