diff --git a/crates/routes/src/feeds.rs b/crates/routes/src/feeds.rs index 9538f06c0..49218c1b0 100644 --- a/crates/routes/src/feeds.rs +++ b/crates/routes/src/feeds.rs @@ -206,7 +206,7 @@ fn get_feed_community( let community = Community::read_from_name(conn, community_name)?; let posts = PostQueryBuilder::create(conn) - .listing_type(ListingType::All) + .listing_type(ListingType::Community) .sort(*sort_type) .community_id(community.id) .list()?;