We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ebe95a commit 7a0632eCopy full SHA for 7a0632e
1 file changed
src/commands/license.js
@@ -153,8 +153,8 @@ module.exports = {
153
return;
154
}
155
156
- // Get detailed license information
157
- const licenseInfo = await licenseClient.getLicense(validation.licenseId || 'unknown');
+ // Get detailed license information by key (avoid fallback unknown identifier)
+ const licenseInfo = await licenseClient.getLicense(licenseKey);
158
159
const embed = new EmbedBuilder()
160
.setColor('#0099ff')
0 commit comments