Fix: Add empty function to catch clauses

This commit is contained in:
2022-11-29 00:23:19 +01:00
parent f7c878854b
commit 361326c31e
8 changed files with 20 additions and 20 deletions

View File

@ -60,7 +60,7 @@ client.on(Events.ChannelUpdate, async (oldChannel, newChannel) => {
logChannel.send({
embeds: [embed]
}).catch();
}).catch(() => {});
return;
}
@ -81,5 +81,5 @@ client.on(Events.ChannelUpdate, async (oldChannel, newChannel) => {
logChannel.send({
embeds: [embed]
}).catch();
}).catch(() => {});
});