Skip to content

Commit

Permalink
rss: filter out replies server-side (#2518)
Browse files Browse the repository at this point in the history
  • Loading branch information
bnewbold authored Jan 15, 2024
1 parent 921b57d commit 1d3e202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bskyweb/cmd/bskyweb/rss.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func (srv *Server) WebProfileRSS(c echo.Context) error {
}
}

af, err := appbsky.FeedGetAuthorFeed(ctx, srv.xrpcc, did.String(), "", "", 30)
af, err := appbsky.FeedGetAuthorFeed(ctx, srv.xrpcc, did.String(), "", "posts_no_replies", 30)
if err != nil {
log.Warn("failed to fetch author feed", "did", did, "err", err)
return err
Expand Down

0 comments on commit 1d3e202

Please sign in to comment.