Tyrrrz / DiscordChatExporter

Exports Discord chat logs to a file
MIT License
7.48k stars 682 forks source link

Export reaction users in JSON format #1107

Closed slatinsky closed 1 year ago

slatinsky commented 1 year ago

This pull request adds users that reacted to a message with an emoji to JSON export

"reactions": [
        {
          "emoji": {
            //...
          },
          "count": 37,
          "users": [
            {
              "id": "158600892784241132",
              "name": "user",
              "nickname": "user8745",
              "isBot": false,
              "avatarUrl": "..."
            },
            //...

notes:

tested:

slatinsky commented 1 year ago

Changes:

Tested on CLI build Windows 10, export to JSON format. Pagination (> 100 users per emoji) works too

Tyrrrz commented 1 year ago

Thanks, merged. I'll clean up in a follow up commit.