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") }