How can i check if a message have an attachment?
And optionally, how can i check if the message is a text-file (and not something like pictures or videos)?
8 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!
- ✅
Marked as resolved by OPyou can check
<Message>.attachments.size
to check if there's an attachment since attachments
is a Collection
to determine whether a given Attachment
is a text file, you'd probably need to check <Attachment>.contentType
so check if
<Message>.attachments.size
is greater than 0, right?sure
and to process only the first attached file (to relay to openai api)
<message>attachments.first ?
that is a method, so assuming you call it, sure
okay, will try, thanks!