Forum Tag Listener
Is there a way to make a listener which listens to Forum tag changes?
Use-case: I have a help forum. When someone edits the forum tags to mark is as answered (instead of using a /solve command I've added), I want the bot to send a message in the channel
3 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Not a discord.js issue? Check out #other-js-ts.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!You can listen to the
threadUpdate
event. and check if the tags have been updated or not (event) Client#threadUpdate
Emitted whenever a thread is updated - e.g. name change, archive state change, locked state change.