summaryrefslogtreecommitdiffstats
path: root/bridge/discord/helpers.go
diff options
context:
space:
mode:
Diffstat (limited to 'bridge/discord/helpers.go')
-rw-r--r--bridge/discord/helpers.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/bridge/discord/helpers.go b/bridge/discord/helpers.go
index 00592f3a..e183165c 100644
--- a/bridge/discord/helpers.go
+++ b/bridge/discord/helpers.go
@@ -188,8 +188,9 @@ func replaceEmotes(text string) string {
}
func (b *Bdiscord) replaceAction(text string) (string, bool) {
- if strings.HasPrefix(text, "_") && strings.HasSuffix(text, "_") {
- return text[1 : len(text)-1], true
+ length := len(text)
+ if length > 1 && text[0] == '_' && text[length-1] == '_' {
+ return text[1 : length-1], true
}
return text, false
}