You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Messages sent to IRC are split due to the IRC command length limit of 512 bytes. This appears to be done by the _splitLongLines function.
The current splitting method seems to count Unicode characters rather than bytes, resulting in (possibly large) parts of the message disappearing. It needs to be changed to count bytes of the string encoded in utf-8.
Noticed with discord-irc, issue reactiflux/discord-irc#199 (contains a test log). discord-irc is using node-irc version 0.5.2.
The text was updated successfully, but these errors were encountered:
Messages sent to IRC are split due to the IRC command length limit of 512 bytes. This appears to be done by the _splitLongLines function.
The current splitting method seems to count Unicode characters rather than bytes, resulting in (possibly large) parts of the message disappearing. It needs to be changed to count bytes of the string encoded in utf-8.
Noticed with
discord-irc
, issue reactiflux/discord-irc#199 (contains a test log).discord-irc
is using node-irc version 0.5.2.The text was updated successfully, but these errors were encountered: