You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, Reacord can create a new message and render to that, but it cannot take control of an existing message and use that. This is similar in concept to DOM hydration, and could be used to keep previous messages interactive after a bot restart, among other things. What this implementation looks like, I'm not sure yet 🤔
The text was updated successfully, but these errors were encountered:
Maybe add a way to save important message states and load them again. You could also allow the component to take a message and recover the state that way
For anyone attempting this, note that the <Message>.edit() method in discord.js will fail for messages that have been in a channel for a long time (usually 1.5~2 months). There won't be any errors and the promise will successfully resolve, but the actual message is not updated. I don't know if it's an issue with discord.js or the discord API itself though.
Right now, Reacord can create a new message and render to that, but it cannot take control of an existing message and use that. This is similar in concept to DOM hydration, and could be used to keep previous messages interactive after a bot restart, among other things. What this implementation looks like, I'm not sure yet 🤔
The text was updated successfully, but these errors were encountered: