diff --git a/bridge/irc/irc.go b/bridge/irc/irc.go index 0a24ec75..b493997a 100644 --- a/bridge/irc/irc.go +++ b/bridge/irc/irc.go @@ -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] + " " + text = string(input[:b.Config.MessageLength]) + " " } if len(b.Local) < b.Config.MessageQueue { if len(b.Local) == b.Config.MessageQueue-1 {