API: fix accidental append instead of prepend

This commit is contained in:
mavolin 2020-05-23 02:08:36 +02:00 committed by diamondburned
parent 7b52582c93
commit 93d9323b3b
1 changed files with 1 additions and 1 deletions

View File

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