mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-11-28 01:33:10 +00:00
API: fix accidental append instead of prepend
This commit is contained in:
parent
7b52582c93
commit
93d9323b3b
|
@ -69,7 +69,7 @@ func (c *Client) ReactionsBefore(
|
|||
if err != nil {
|
||||
return users, err
|
||||
}
|
||||
users = append(users, r...)
|
||||
users = append(r, users...)
|
||||
|
||||
if len(r) < hardLimit {
|
||||
break
|
||||
|
|
Loading…
Reference in a new issue