1
0
mirror of https://github.com/velour/catbase.git synced 2025-04-04 04:01:42 +00:00

slack: strip out dumb nbsp

This commit is contained in:
Chris Sexton 2020-05-17 09:39:42 -04:00
parent 8205269492
commit 60762c3891

View File

@ -413,6 +413,9 @@ func (s *SlackApp) buildMessage(m *slackevents.MessageEvent) msg.Message {
text = fixText(s.getUser, text) text = fixText(s.getUser, text)
// Slack likes to put these NBSP in and it screws with matching later
text = strings.ReplaceAll(text, "\u00a0", " ")
isCmd, text := bot.IsCmd(s.config, text) isCmd, text := bot.IsCmd(s.config, text)
isAction := m.SubType == "me_message" isAction := m.SubType == "me_message"