From df77ca02265aec9031871db0edf026d70156532e Mon Sep 17 00:00:00 2001 From: r Date: Sun, 21 Apr 2024 15:18:48 +0000 Subject: [PATCH] Allow adding non-following accounts to a list --- service/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }