diff --git a/client/versia/client.ts b/client/versia/client.ts index 2255e39..1e50c95 100644 --- a/client/versia/client.ts +++ b/client/versia/client.ts @@ -1350,7 +1350,7 @@ export class Client extends BaseClient { } /** - * GET /api/v1/timelines/public + * GET /api/v1/timelines/public?local=true * * @param options.only_media Show only statuses with media attached? Defaults to false. * @param options.limit Max number of results to return. Defaults to 20. @@ -1372,6 +1372,8 @@ export class Client extends BaseClient { ): Promise> { const params = new URLSearchParams(); + params.set("local", "true"); + if (options) { if (options.max_id) { params.set("max_id", options.max_id);