Change squash type to prevent further execution

This commit is contained in:
Skylar Grant 2023-05-08 09:57:55 -04:00
parent 0c28ec437c
commit 56d9cacfbe
1 changed files with 1 additions and 1 deletions

View File

@ -729,7 +729,7 @@ const functions = {
// Make sure guildInfo is what we expect, the watch channel isnt blank, and notifications are enabled // Make sure guildInfo is what we expect, the watch channel isnt blank, and notifications are enabled
if (guildInfo instanceof GuildInfo && guildInfo.watchChannelId != "" && guildInfo.notificationsEnabled) { if (guildInfo instanceof GuildInfo && guildInfo.watchChannelId != "" && guildInfo.notificationsEnabled) {
// Fetch the Guild // Fetch the Guild
const guild = await client.guilds.fetch(guildInfo.guildId).catch(e => console.error("Attempted to fetch guild I'm no longer in.")); const guild = await client.guilds.fetch(guildInfo.guildId).catch(e => {throw "Attempted to fetch guild I'm no longer in."});
// Fetch the Channel // Fetch the Channel
const channel = await guild.channels.fetch(guildInfo.watchChannelId); const channel = await guild.channels.fetch(guildInfo.watchChannelId);
// Create the filter function // Create the filter function