Allocate space to prevent SIGSEGV.

This commit is contained in:
Ollivier Robert 2021-04-15 12:25:43 +02:00 committed by mattn
parent adff0e83b9
commit 2f161cfa50

View File

@ -389,7 +389,7 @@ func (c *Client) GetTimelineDirect(ctx context.Context, pg *Pagination) ([]*Stat
return nil, err
}
var statuses []*Status
var statuses = make([]*Status, len(conversations))
for _, c := range conversations {
s := c.LastStatus