From 154b90a902254bf6dc67e56f3f7c188ea4708d23 Mon Sep 17 00:00:00 2001 From: gutmet Date: Wed, 23 Nov 2022 23:50:06 +0100 Subject: [PATCH] limit statuses to 100 instead of 200 --- accounts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts.go b/accounts.go index 930cd28..015acbf 100644 --- a/accounts.go +++ b/accounts.go @@ -144,7 +144,7 @@ func UpdateCurrentAccount(profile *Profile) (*Account, error) { func (a *Account) GetStatuses(excludeBoosts bool, pg *Pagination) ([]*Status, error) { var statuses []*Status params := url.Values{} - params.Set("limit", "200") + params.Set("limit", "100") if excludeBoosts { params.Set("exclude_reblogs", "true") }