Revert "Fix override logic."

This reverts commit 923d7f0eca.
This commit is contained in:
Dessalines 2024-11-10 10:17:51 -05:00
parent 11730a23d5
commit 8b53a680af

View file

@ -95,9 +95,9 @@ pub async fn list_posts(
// If in their user settings (or as part of the API request), auto-mark fetched posts as read
if let Some(local_user) = local_user {
// If false is passed, then don't mark as read
if data.auto_mark_fetched_posts_as_read.unwrap_or(true)
&& local_user.auto_mark_fetched_posts_as_read
if data
.auto_mark_fetched_posts_as_read
.unwrap_or(local_user.auto_mark_fetched_posts_as_read)
{
let post_ids = posts.iter().map(|p| p.post.id).collect::<Vec<PostId>>();
PostRead::mark_as_read(&mut context.pool(), &post_ids, local_user.person_id).await?;