images not in message?

Hello, when i get the messages every message with image is just empty, why is that? it shows every text message normally but when its an image there is no image link or smth like that, just an empty response
11 Replies
d.js toolkit
d.js toolkit•6mo 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!
Danial
Danial•6mo ago
How are you getting the message and accessing the image?
Jannik44
Jannik44•6mo ago
im just using message.content for the messages, shouldnt be the image link in there?
Danial
Danial•6mo ago
Yes, do you have the MessageContent intent?
Jannik44
Jannik44•6mo ago
yes, i did set that in the discord dev opions and the code aswell
const client = new Client({
intents: [
IntentsBitField.Flags.Guilds,
IntentsBitField.Flags.GuildMembers,
IntentsBitField.Flags.GuildMessages,
IntentsBitField.Flags.MessageContent,
],
});
const client = new Client({
intents: [
IntentsBitField.Flags.Guilds,
IntentsBitField.Flags.GuildMembers,
IntentsBitField.Flags.GuildMessages,
IntentsBitField.Flags.MessageContent,
],
});
its working with text messages, so it is something image related 🤔
Danial
Danial•6mo ago
Try accessing message.embeds, I think it'd be there if it gets embedded
Jannik44
Jannik44•6mo ago
and its as imagelink there or image directly?
Danial
Danial•6mo ago
I am not entirely sure, can you log message.embeds and see what it returns?
Jannik44
Jannik44•6mo ago
sure, gimme a sec it returns
although i did embed an image
aha, it returns something when its an actual embed of a link
although i did embed an image
aha, it returns something when its an actual embed of a link
js [ Embed { data: { url: 'https://github.com/TunayAdaKaracan/Cloudflare-DDNS', type: 'article', title: 'GitHub - TunayAdaKaracan/Cloudflare-DDNS: A small script i made wit...', thumbnail: [Object], provider: [Object], description: 'A small script i made with python. Free to use. Should be easy enough to extend it. Any questions? @kutuptilkisi on discord - GitHub - TunayAdaKaracan/Cloudflare-DDNS: A small script i made with py...', content_scan_version: 1, color: 1975079 } } ] ```
Danial
Danial•6mo ago
Ah, nice
Jannik44
Jannik44•6mo ago
but image... hm