From 41076d933d38021dbe8c86a8f85515a2161b49bd Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sat, 25 Nov 2017 22:18:46 +0000 Subject: [PATCH] Beep --- commands/search/stack-overflow.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/search/stack-overflow.js b/commands/search/stack-overflow.js index 6e3697db..81e0df46 100644 --- a/commands/search/stack-overflow.js +++ b/commands/search/stack-overflow.js @@ -43,6 +43,8 @@ module.exports = class StackOverflowCommand extends Command { .setAuthor('Stack Overflow', 'https://i.imgur.com/P2jAgE3.png') .setURL(data.link) .setTitle(data.title) + .addField('ID', + data.question_id, true) .addField('❯ Asker', `[${data.owner.display_name}](${data.owner.link})`, true) .addField('❯ Views', @@ -51,8 +53,6 @@ module.exports = class StackOverflowCommand extends Command { data.score, true) .addField('❯ Created', new Date(data.creation_date * 1000).toDateString(), true) - .addField('❯ Modified', - new Date(data.last_edit_date * 1000).toDateString(), true) .addField('❯ Last Activity', new Date(data.last_activity_date * 1000).toDateString(), true); return msg.embed(embed);