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:
parent
8205269492
commit
60762c3891
@ -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"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user