Split on UTF-8 for MessageSplit (irc). Closes #308

This commit is contained in:
Wim 2017-12-07 22:21:54 +01:00
parent 3496ed0c7e
commit 05eb75442a
1 changed files with 2 additions and 1 deletions

View File

@ -197,8 +197,9 @@ func (b *Birc) Send(msg config.Message) (string, error) {
msg.Text = helper.SplitStringLength(msg.Text, b.Config.MessageLength)
}
for _, text := range strings.Split(msg.Text, "\n") {
input := []rune(text)
if len(text) > b.Config.MessageLength {
text = text[:b.Config.MessageLength] + " <message clipped>"
text = string(input[:b.Config.MessageLength]) + " <message clipped>"
}
if len(b.Local) < b.Config.MessageQueue {
if len(b.Local) == b.Config.MessageQueue-1 {