]> Untitled Git - lemmy.git/commitdiff
Fixing top level replies, and notifs.
authorDessalines <tyhou13@gmx.com>
Wed, 13 Jan 2021 17:01:42 +0000 (12:01 -0500)
committerDessalines <tyhou13@gmx.com>
Wed, 13 Jan 2021 17:01:42 +0000 (12:01 -0500)
lemmy_api/src/comment.rs
lemmy_db_views/src/comment_view.rs
lemmy_websocket/src/chat_server.rs

index fbbed6d62c18fa5a4a0fb338dc2e7d178bdd95cc..631addb82f79cea9dba82e8d4a41a75342427c08 100644 (file)
@@ -152,7 +152,7 @@ impl Perform for CreateComment {
       comment_view.comment.read = true;
     }
 
-    let res = CommentResponse {
+    let mut res = CommentResponse {
       comment_view,
       recipient_ids,
       form_id: data.form_id.to_owned(),
@@ -164,6 +164,8 @@ impl Perform for CreateComment {
       websocket_id,
     });
 
+    res.recipient_ids = Vec::new(); // Necessary to avoid doubles
+
     Ok(res)
   }
 }
index 951e2f61b2f8ced3809800e3da064bd16fb53ef1..a40b3263501e0dfb7a199fc548c0c1ebc5dd5ee8 100644 (file)
@@ -321,7 +321,8 @@ impl<'a> CommentQueryBuilder<'a> {
     if let Some(recipient_id) = self.recipient_id {
       query = query
         // TODO needs lots of testing
-        .filter(user_alias_1::id.eq(recipient_id))
+        .filter(user_alias_1::id.eq(recipient_id)) // Gets the comment replies
+        .or_filter(comment::parent_id.is_null().and(post::creator_id.eq(recipient_id))) // Gets the top level replies
         .filter(comment::deleted.eq(false))
         .filter(comment::removed.eq(false));
     }
index cdfac6c512b6af73f79ee06e5d509496e519d5a1..7d1975cd73ff5ea4adfb725bf2c2824bf3ee89da 100644 (file)
@@ -335,6 +335,7 @@ impl ChatServer {
 
     // Send it to the post room
     let mut comment_post_sent = comment_reply_sent.clone();
+    // Remove the recipients here to separate mentions / user messages from post or community comments
     comment_post_sent.recipient_ids = Vec::new();
     self.send_post_room_message(
       user_operation,
@@ -352,8 +353,6 @@ impl ChatServer {
       websocket_id,
     )?;
 
-    // Remove the form id here to separate mentions / user messages from post or community comments
-    comment_reply_sent.form_id = None;
     // Send it to the recipient(s) including the mentioned users
     for recipient_id in &comment_reply_sent.recipient_ids {
       self.send_user_room_message(