From 5c2c9d25a5894caa79d9c7eb053b1f6e1f2784b1 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 12 Oct 2018 23:41:53 +0000 Subject: [PATCH] Remove unintentional change --- commands/random/reddit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/random/reddit.js b/commands/random/reddit.js index 97097d64..f0fa4a0e 100644 --- a/commands/random/reddit.js +++ b/commands/random/reddit.js @@ -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}`); } };