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
d.js toolkit
d.js toolkit3w ago
- 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 OP
duck
duck3w ago
you 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
Vico
VicoOP3w ago
so check if <Message>.attachments.size is greater than 0, right?
duck
duck3w ago
sure
Vico
VicoOP3w ago
and to process only the first attached file (to relay to openai api) <message>attachments.first ?
duck
duck3w ago
that is a method, so assuming you call it, sure
Vico
VicoOP3w ago
okay, will try, thanks!

Did you find this page helpful?