Issue Saving Message To Json File Discord.py Rewrite
I am attempting to save the most recent message of every user to a JSON file attached to their user ID. Something will be written to the file but it's not the raw message. async de
Solution 1:
That's the string representation of the Message
object. To get the content of the message, use msg.content
Post a Comment for "Issue Saving Message To Json File Discord.py Rewrite"