diff --git a/src/modules/logging.js b/src/modules/logging.js index fdcb7d4..a24496a 100644 --- a/src/modules/logging.js +++ b/src/modules/logging.js @@ -43,13 +43,15 @@ events.add("guildUpdate", "logging", async function (guild, oldGuild) { diff += "```"; - channel.createMessage({ - embeds: [ - { - color: COLOR_CHANGED, - title: "Features Updated", - content: diff, - }, - ], - }); + channel + .createMessage({ + embeds: [ + { + color: COLOR_CHANGED, + title: "Features Updated", + content: diff, + }, + ], + }) + .catch(() => {}); });