Allow adding non-following accounts to a list

This commit is contained in:
r 2024-04-21 15:18:48 +00:00
parent e3a9861a8c
commit df77ca0226

View file

@ -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
}