messageTags: Fix duplicate entries & replies (#922)

Co-authored-by: V <vendicated@riseup.net>
This commit is contained in:
Mufaro 2023-04-17 01:44:33 +02:00 committed by GitHub
parent dac9cad873
commit 9c929a4d98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 5 deletions

View File

@ -111,6 +111,7 @@ function registerSubCommands(cmd: Command, plugin: string) {
...o,
type: ApplicationCommandType.CHAT_INPUT,
name: `${cmd.name} ${o.name}`,
id: `${o.name}-${cmd.id}`,
displayName: `${cmd.name} ${o.name}`,
subCommandPath: [{
name: o.name,

View File

@ -234,12 +234,15 @@ export default definePlugin({
});
break; // end 'preview'
}
}
return sendBotMessage(ctx.channel.id, {
author,
content: "Invalid sub-command"
});
default: {
sendBotMessage(ctx.channel.id, {
author,
content: "Invalid sub-command"
});
break;
}
}
}
}
]