From 1d33e60e36fa7b0e361990ac347ee8d620d67dcc Mon Sep 17 00:00:00 2001 From: tsudoko Date: Thu, 8 Feb 2018 23:28:33 +0100 Subject: Truncate messages sent to IRC based on byte count (#368) * Truncate messages sent to IRC based on byte count * Avoid unnecessary string allocations --- bridge/irc/irc.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'bridge/irc') diff --git a/bridge/irc/irc.go b/bridge/irc/irc.go index 0e90aaf9..d95aef4e 100644 --- a/bridge/irc/irc.go +++ b/bridge/irc/irc.go @@ -19,6 +19,7 @@ import ( "strconv" "strings" "time" + "unicode/utf8" ) type Birc struct { @@ -200,9 +201,12 @@ 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 = string(input[:b.Config.MessageLength]) + " " + text = text[:b.Config.MessageLength-len(" ")] + if r, size := utf8.DecodeLastRuneInString(text); r == utf8.RuneError { + text = text[:len(text)-size] + } + text += " " } if len(b.Local) < b.Config.MessageQueue { if len(b.Local) == b.Config.MessageQueue-1 { -- cgit v1.2.3