12.8.3 fix internal error handling

This commit is contained in:
SowinskiBraeden committed 2022-10-16 13:07:32 -07:00
1 parent 060ef78db4
commit dad2cddf61
12 files changed
+211 -74

No files matched your search

+1 -1
View File
@@ -12,6 +12,6 @@ module.exports = async (client, interaction) => {
try {
interactionHandler.run(client, interaction, { GuildDB });
} catch (err) {
client.sendInternalError(err);
client.sendInternalError(interaction, err);
}
}