diff --git a/src/structure/client/wrappers/GuildWrapper.js b/src/structure/client/wrappers/GuildWrapper.js index 45f9be3..f639570 100644 --- a/src/structure/client/wrappers/GuildWrapper.js +++ b/src/structure/client/wrappers/GuildWrapper.js @@ -72,7 +72,7 @@ class GuildWrapper { startedIn = await this.resolveChannel(startedIn); const pollChannel = await this.resolveChannel(channel); if (pollChannel) { - const msg = await pollChannel.messages.fetch(message); + const msg = await pollChannel.messages.fetch(message).catch(() => null); if (msg) { const { reactions } = msg; const reactionEmojis = questions.length ? PollReactions.Multi : PollReactions.Single;