diff --git a/pkg/timeline/postgres.go b/pkg/timeline/postgres.go index 4bd4713..b4ddac9 100644 --- a/pkg/timeline/postgres.go +++ b/pkg/timeline/postgres.go @@ -136,7 +136,7 @@ WHERE "channel_id" = $1 qb.WriteString(` AND "published_at" < $2`) } } - qb.WriteString(` ORDER BY "published_at" DESC LIMIT 10`) + qb.WriteString(` ORDER BY "published_at" DESC LIMIT 20`) rows, err := conn.QueryContext(context.Background(), qb.String(), args...) if err != nil {