diff options
author | r <r@freesoftwareextremist.com> | 2019-12-25 04:30:21 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2019-12-25 04:30:21 +0000 |
commit | f6f7b27e40f97ffe88323be01bea1d04ca39d6b0 (patch) | |
tree | 2aad7592cc20bc9d1d59e5e9da5d83b1d15774cc /mastodon | |
parent | 51bdb20402abc08102e83a234bb4f6720c5a1166 (diff) | |
download | bloat-f6f7b27e40f97ffe88323be01bea1d04ca39d6b0.tar.gz bloat-f6f7b27e40f97ffe88323be01bea1d04ca39d6b0.zip |
Add local and twkn timelines
Diffstat (limited to 'mastodon')
-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 |