From 0e3b32074a9ef37f09289d7cc462ef45513d30f9 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Sat, 4 Sep 2021 01:12:50 -0400 Subject: [PATCH] Fixing some comment websocket issues. - Wasn't correctly getting comment parent user for mark as read. Fixes #1767 - Was using all recipients for simple comment return. Fixes #1766 --- crates/api_crud/src/comment/create.rs | 10 +++++++++- crates/websocket/src/send.rs | 9 +++++++-- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/crates/api_crud/src/comment/create.rs b/crates/api_crud/src/comment/create.rs index c25966c7d..94c30692d 100644 --- a/crates/api_crud/src/comment/create.rs +++ b/crates/api_crud/src/comment/create.rs @@ -21,6 +21,7 @@ use lemmy_apub::{ }; use lemmy_db_queries::{source::comment::Comment_, Crud, Likeable}; use lemmy_db_schema::source::comment::*; +use lemmy_db_views::comment_view::CommentView; use lemmy_utils::{ utils::{remove_slurs, scrape_text_for_mentions}, ApiError, @@ -143,8 +144,15 @@ impl PerformCrud for CreateComment { ) .await?; + let person_id = local_user_view.person.id; + let comment_id = inserted_comment.id; + let comment_view = blocking(context.pool(), move |conn| { + CommentView::read(conn, comment_id, Some(person_id)) + }) + .await??; + // If its a comment to yourself, mark it as read - if local_user_view.person.id == inserted_comment.creator_id { + if local_user_view.person.id == comment_view.get_recipient_id() { let comment_id = inserted_comment.id; blocking(context.pool(), move |conn| { Comment::update_read(conn, comment_id, true) diff --git a/crates/websocket/src/send.rs b/crates/websocket/src/send.rs index 130d94a48..a49759d63 100644 --- a/crates/websocket/src/send.rs +++ b/crates/websocket/src/send.rs @@ -76,10 +76,11 @@ pub async fn send_comment_ws_message