fix: include own thoughts in home feed
Some checks failed
lint / lint (push) Has been cancelled
test / unit (push) Has been cancelled
test / integration (push) Has been cancelled
lint / lint (pull_request) Failing after 9m27s
test / unit (pull_request) Successful in 16m33s
test / integration (pull_request) Failing after 17m15s

This commit is contained in:
2026-05-14 17:47:13 +02:00
parent 057ed3ccbf
commit 68261c4b2b

View File

@@ -14,7 +14,8 @@ pub async fn get_home_feed(
user_id: &UserId, user_id: &UserId,
page: PageParams, page: PageParams,
) -> Result<Paginated<FeedEntry>, DomainError> { ) -> Result<Paginated<FeedEntry>, DomainError> {
let following_ids = follows.get_accepted_following_ids(user_id).await?; let mut following_ids = follows.get_accepted_following_ids(user_id).await?;
following_ids.push(user_id.clone()); // include own thoughts in home feed
feed.home_feed(&following_ids, &page, Some(user_id)).await feed.home_feed(&following_ids, &page, Some(user_id)).await
} }