Fix tag character limit
This commit is contained in:
parent
15408b04d7
commit
39b7b35cbf
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ export class TagsPlugin extends ZeppelinPlugin<ITagsPluginConfig, ITagsPluginPer
|
|||
}
|
||||
|
||||
if (body.trim() === "") return;
|
||||
if (body.length > 2048) return;
|
||||
if (body.length > 2000) return;
|
||||
|
||||
const channel = this.guild.channels.get(msg.channel_id) as TextChannel;
|
||||
const responseMsg = await channel.createMessage(body);
|
||||
|
|
Loading…
Add table
Reference in a new issue