Discord 0.0.297 running under macOS 10.14.6 was requesting messages from the discordapp.com domain.
I had to edit dcejson_exporter.py and html_exporter.py to get the export to work:
# match = re.match(r"https://discord.com/api/v9/channels/(\d*)/messages(\?|$)", url)
match = re.match(r"https://discordapp.com/api/v9/channels/(\d*)/messages(\?|$)", url)
Discord 0.0.297 running under macOS 10.14.6 was requesting messages from the
discordapp.com
domain.I had to edit
dcejson_exporter.py
andhtml_exporter.py
to get the export to work: