diff --git a/commands/info.js b/commands/info.js index 76b558f..341f2b6 100644 --- a/commands/info.js +++ b/commands/info.js @@ -24,7 +24,7 @@ module.exports = () => (ctx) => { text += "Channel ID: "; text += `\`${forward.id}\`\n`; text += "Message Date: `"; - const date = new Date(reply.forward_date); + const date = new Date(reply.forward_date*1000); text += date.toUTCString(); text += "`";