bugfix: abort if not found

This commit is contained in:
Baipyrus 2024-04-05 11:47:37 +02:00
parent 765e80071a
commit 904c33c2f8

View File

@ -146,7 +146,7 @@ async function removeResponse(interaction) {
const name = options.getString('name');
// Find keyword in database
/** @type {import('../../models/keywords.js').Keyword} */
/** @type {import('../../models/keywords.js').Keyword|null} */
const found = await Keywords.findOne({
where: {
guild: interaction.guildId,
@ -154,6 +154,15 @@ async function removeResponse(interaction) {
}
});
// Abort if keyword not found
if (found === null) {
await interaction.reply({
content: 'Unknown keyword was specified!',
ephemeral: true
});
return;
}
// Try deleting response from database
await Responses.destroy({
where: {