Remove unintentional change

This commit is contained in:
Daniel Odendahl Jr
2018-10-12 23:41:53 +00:00
parent be7b74e5d8
commit 5c2c9d25a5
+1 -1
View File
@@ -28,7 +28,7 @@ module.exports = class RedditCommand extends SubredditCommand {
.setTitle(post.title)
.setImage(post.post_hint === 'image' ? post.url : null)
.setURL(`https://www.reddit.com${post.permalink}`)
.setTimestamp(post.created * 1000)
.setTimestamp(post.created_utc * 1000)
.setFooter(`${post.ups}`);
}
};