Footer not showing
See original GitHub issueWhich package is this bug report for?
discord.js
Issue description
Steps to reproduce: Log in with your bot Create any embed by manually building the object Include a footer in the embed Send the embed Footer is not showing (it shows in v13)
Code sample
import * as Discord from 'discord.js'
const intents = [
Discord.GatewayIntentBits.Guilds,
Discord.GatewayIntentBits.GuildMessages,
]
const client = new Discord.Client({ intents: intents })
client.on('messageCreate', message => {
if (message.content == '!embed') {
const embed = {
title: 'Some title',
description: 'Some Description',
footer: {
text: 'Some text',
icon_url: message.author.displayAvatarURL()
}
}
message.channel.send({embeds: [e]})
}
})
client.login('token')
Package version
discord.js@14.0.0-dev.1644797187.0dfdb2c
Node.js version
17.4.0
Operating system
Debian
Priority this issue should have
Medium (should be fixed soon)
Which partials do you have configured?
No Partials
Which gateway intents are you subscribing to?
Guilds, GuildMessages
I have tested this issue on a development release
discord.js@14.0.0-dev.1644797187.0dfdb2c
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
My footer div is not showing? - html - Stack Overflow
first create Container, Header, Content and Footer. Fill them with data. Do not apply CSS yet, get to know their static positions first....
Read more >Footer in Word document not showing - Microsoft Community
Try going to File>Options>Advanced>Show document content and check the box for "Show drawings and text boxes on screen". Is the font formatted ...
Read more >Why isn't my footer showing up on the page? - HTML-CSS
Open the footer and then start the section? That footer wasn't there when I looked, but OK. Try: position: sticky;
Read more >What would all the possible reasons be why your footer wont ...
I made sure to do the clear: both; command in my footer. But it's still not showing up. I tried adding the float:bottom...
Read more >Footer not showing on Google Chrome | WordPress.org
you might have an issue with theme and/or elementor setting(s) or customizations which is “pushing” your footer content out of viewable area on...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This will be fixed by #7464
Wait for the next release in about 5 and a half hours