diff options
Diffstat (limited to 'client/client.go')
-rw-r--r-- | client/client.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/client.go b/client/client.go index 9b92b33b..2840c4e0 100644 --- a/client/client.go +++ b/client/client.go @@ -685,6 +685,10 @@ func buildFilterQueryString(path string, filter *Filter) string { values.Set("feed_id", strconv.FormatInt(filter.FeedID, 10)) } + if filter.GloballyVisible { + values.Set("globally_visible", "true") + } + for _, status := range filter.Statuses { values.Add("status", status) } |