diff --git a/event/listeners/messageReactionAdd.js b/event/listeners/messageReactionAdd.js index 4fbc7a9..201adef 100644 --- a/event/listeners/messageReactionAdd.js +++ b/event/listeners/messageReactionAdd.js @@ -79,13 +79,17 @@ class MessageReactionAddListener extends Listener { } let message = await channel.messages.get(boardID); + // If the original embed description is empty make this embed empty ( and not undefined ) + let description; + if (message.embeds[0].description == undefined) + description = ''; let Embed = client.util.embed() .setColor(reaction.message.member.displayHexColor) .setAuthor(reaction.message.author.username, reaction.message.author.displayAvatarURL()) .addField('Jump to', `[message](https://discordapp.com/channels/${reaction.message.guild.id}/${reaction.message.channel.id}/${reaction.message.id})`, true) .addField('Channel', reaction.message.channel, true) - .setDescription(message.embeds[0].description) + .setDescription(description) .setFooter(reactionCount + ' ' + emote) .setTimestamp(); diff --git a/event/listeners/messageReactionRemove.js b/event/listeners/messageReactionRemove.js index 50b73b6..a9e9ba0 100644 --- a/event/listeners/messageReactionRemove.js +++ b/event/listeners/messageReactionRemove.js @@ -77,13 +77,17 @@ class messageReactionRemoveListener extends Listener { } let message = await channel.messages.get(boardID); + // If the original embed description is empty make this embed empty ( and not undefined ) + let description; + if (message.embeds[0].description == undefined) + description = ''; let Embed = client.util.embed() .setColor(reaction.message.member.displayHexColor) .setAuthor(reaction.message.author.username, reaction.message.author.displayAvatarURL()) .addField('Jump to', `[message](https://discordapp.com/channels/${reaction.message.guild.id}/${reaction.message.channel.id}/${reaction.message.id})`, true) .addField('Channel', reaction.message.channel, true) - .setDescription(message.embeds[0].description) + .setDescription(description) .setFooter(reactionCount + ' ' + emote) .setTimestamp();