We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 405e958 commit d2f92b5Copy full SHA for d2f92b5
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "message-manager-backend",
3
- "version": "2.3.1",
+ "version": "2.3.2",
4
"description": "Backend for the message manager site",
5
"main": "./dist/index.js",
6
"exports": "./dist/index.js",
src/interactions/commands/chatInput/send.ts
@@ -88,7 +88,11 @@ export default async function handleSendCommand(
88
});
89
if (contentOnly) {
90
return createModal({
91
- title: `Sending a message to #${channel.name}`,
+ title: `Sending a message to #${
92
+ channel.name.length > 23
93
+ ? `${channel.name.substring(0, 20)}...`
94
+ : channel.name
95
+ }`,
96
custom_id: `send:${channelId}`,
97
components: [
98
createTextInputWithRow({
0 commit comments