diff options
Diffstat (limited to 'mastodon/status.go')
-rw-r--r-- | mastodon/status.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mastodon/status.go b/mastodon/status.go index 9f029d1..c36b6cb 100644 --- a/mastodon/status.go +++ b/mastodon/status.go @@ -192,7 +192,7 @@ func (c *Client) GetTimelineHome(ctx context.Context, pg *Pagination) ([]*Status func (c *Client) GetTimelinePublic(ctx context.Context, isLocal bool, pg *Pagination) ([]*Status, error) { params := url.Values{} if isLocal { - params.Set("local", "t") + params.Set("local", "true") } var statuses []*Status |