From 47d7d9017f99343198efb1e9bd9e784a3e643375 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Fri, 21 Jun 2024 16:19:06 -0400 Subject: [PATCH] Fixing formatting. --- crates/db_views/src/post_view.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/db_views/src/post_view.rs b/crates/db_views/src/post_view.rs index f41b9c4d5..0e22f689b 100644 --- a/crates/db_views/src/post_view.rs +++ b/crates/db_views/src/post_view.rs @@ -410,7 +410,10 @@ fn queries<'a>() -> Queries< } // Only hide the read posts, if the saved_only is false. Otherwise ppl with the hide_read // setting wont be able to see saved posts. - else if !options.show_read.unwrap_or(options.local_user.show_read_posts()) { + else if !options + .show_read + .unwrap_or(options.local_user.show_read_posts()) + { // Do not hide read posts when it is a user profile view // Or, only hide read posts on non-profile views if let (None, Some(person_id)) = (options.creator_id, options.local_user.person_id()) {