From 0a38ac60358594118eda04090e4bab4c4b83cf75 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Thu, 13 Nov 2025 09:07:04 -0700 Subject: [PATCH] Another Fix --- interactionHandlers/modals/resetPasswordModal.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interactionHandlers/modals/resetPasswordModal.js b/interactionHandlers/modals/resetPasswordModal.js index e85954a..7a33eab 100644 --- a/interactionHandlers/modals/resetPasswordModal.js +++ b/interactionHandlers/modals/resetPasswordModal.js @@ -10,6 +10,8 @@ module.exports.execute = async (interaction) => { await interaction.reply({ content: `We're sorry, It doesn't look like you have an extension!`, ephemeral: true }); return; } + const extData = await fpbx.getExtension(lookup.extension); // Verify extension exists + console.log(extData) await interaction.deferReply({ ephemeral: true }); // console.log(JSON.stringify(interaction, null, 2)); const newPassword = interaction.fields.getTextInputValue('newPassword');