Hey i have try to get the timestamp of the l’a test message but she said « message.createdTimestamp() » isn’t a function🤔
Can anybody help me ? thx
guild.channels.cache
.filter((channel) => channel.name.includes("ticket"))
.forEach((channel) => {
console.log(channel.name);
channel.messages.fetch({ limit: 1 }).then(message => {
let lastMessage = message.createdTimestamp();
console.log(lastMessage);
})
});