Skip to content

Instantly share code, notes, and snippets.

@mattantonelli
Last active June 20, 2021 12:59
Show Gist options
  • Select an option

  • Save mattantonelli/87e5d96dd0bfd6c3d43050a46308474d to your computer and use it in GitHub Desktop.

Select an option

Save mattantonelli/87e5d96dd0bfd6c3d43050a46308474d to your computer and use it in GitHub Desktop.
Generate a unique list of users who provided any reaction on a given Discord message
reactions = message.reactions.values.map(&:to_s)
reactions.flat_map { |reaction| message.reacted_with(reaction, limit: nil) }.map(&:distinct).uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment