aboutsummaryrefslogtreecommitdiff
path: root/mastodon
diff options
context:
space:
mode:
Diffstat (limited to 'mastodon')
-rw-r--r--mastodon/status.go2
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