aboutsummaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorr <r@freesoftwareextremist.com>2024-04-21 15:18:48 +0000
committerr <r@freesoftwareextremist.com>2024-04-21 15:18:48 +0000
commitdf77ca02265aec9031871db0edf026d70156532e (patch)
tree92a5361c0d6a949f9347d2aa1f337131aa2d9de5 /service
parente3a9861a8c8eeed0a5c702de150d62eff840be9d (diff)
downloadbloat-df77ca02265aec9031871db0edf026d70156532e.tar.gz
bloat-df77ca02265aec9031871db0edf026d70156532e.zip
Allow adding non-following accounts to a list
Diffstat (limited to 'service')
-rw-r--r--service/service.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/service.go b/service/service.go
index 4287509..4122f14 100644
--- a/service/service.go
+++ b/service/service.go
@@ -277,7 +277,7 @@ func (s *service) ListPage(c *client, id string, q string) (err error) {
}
var searchAccounts []*mastodon.Account
if len(q) > 0 {
- result, err := c.Search(c.ctx, q, "accounts", 20, true, 0, id, true)
+ result, err := c.Search(c.ctx, q, "accounts", 20, true, 0, id, false)
if err != nil {
return err
}