Fix #1120: replaceAction "_" crash (discord) (#1121)

pull/1124/head
Qais Patankar 4 years ago committed by GitHub
parent a18cb74f03
commit 2d8f749e36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
}

Loading…
Cancel
Save