Limit length in test.js to 1024
This commit is contained in:
parent
800045e9f6
commit
5e4017360d
1 changed files with 2 additions and 2 deletions
|
@ -34,11 +34,11 @@ const execute = (c) => {
|
|||
c.reply(reply('uuid', c.uuid))
|
||||
c.reply(reply('username', c.username))
|
||||
c.reply(reply('nickname', c.nickname))
|
||||
c.reply(reply('command', c.command))
|
||||
c.reply(reply('command', c.command.slice(0,1024)))
|
||||
c.reply(reply('msgType', c.msgType))
|
||||
c.reply(reply('msgSubtype', c.msgSubtype))
|
||||
c.reply(reply('prefix', c.prefix))
|
||||
c.reply(reply('args', c.args.join(', ')))
|
||||
c.reply(reply('args', c.args.join(', ').slice(0,1024)))
|
||||
c.reply(reply('verify', c.verify.toString()))
|
||||
c.reply(reply('host', c.host))
|
||||
c.reply(reply('port', c.port.toString()))
|
||||
|
|
Loading…
Reference in a new issue