From a1a9c3e4c0f371a469003a8571998e25d774a5a3 Mon Sep 17 00:00:00 2001 From: dullbananas Date: Mon, 4 Sep 2023 02:06:54 -0700 Subject: [PATCH] Make use of variables less redundant and inconsistent in distinguish.rs (#3932) * Make use of variables less redundant and inconsistent in distinguish.rs * fmt --- crates/api/src/comment/distinguish.rs | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/crates/api/src/comment/distinguish.rs b/crates/api/src/comment/distinguish.rs index 7db9a58f..a378e51b 100644 --- a/crates/api/src/comment/distinguish.rs +++ b/crates/api/src/comment/distinguish.rs @@ -18,8 +18,7 @@ pub async fn distinguish_comment( ) -> Result, LemmyError> { let local_user_view = local_user_view_from_jwt(&data.auth, &context).await?; - let comment_id = data.comment_id; - let orig_comment = CommentView::read(&mut context.pool(), comment_id, None).await?; + let orig_comment = CommentView::read(&mut context.pool(), data.comment_id, None).await?; check_community_ban( local_user_view.person.id, @@ -37,18 +36,20 @@ pub async fn distinguish_comment( .await?; // Update the Comment - let comment_id = data.comment_id; let form = CommentUpdateForm { distinguished: Some(data.distinguished), ..Default::default() }; - Comment::update(&mut context.pool(), comment_id, &form) + Comment::update(&mut context.pool(), data.comment_id, &form) .await .with_lemmy_type(LemmyErrorType::CouldntUpdateComment)?; - let comment_id = data.comment_id; - let person_id = local_user_view.person.id; - let comment_view = CommentView::read(&mut context.pool(), comment_id, Some(person_id)).await?; + let comment_view = CommentView::read( + &mut context.pool(), + data.comment_id, + Some(local_user_view.person.id), + ) + .await?; Ok(Json(CommentResponse { comment_view,