From 93d9323b3b3c42e77c10032d4cb8935a40056fcd Mon Sep 17 00:00:00 2001 From: mavolin <48887425+mavolin@users.noreply.github.com> Date: Sat, 23 May 2020 02:08:36 +0200 Subject: [PATCH] API: fix accidental append instead of prepend --- api/message_reaction.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/message_reaction.go b/api/message_reaction.go index f94ad36..a2c81bb 100644 --- a/api/message_reaction.go +++ b/api/message_reaction.go @@ -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