we may need to expand short mentions more than once

This commit is contained in:
Ted Unangst 2019-10-10 18:48:03 -04:00
parent dfca8b10f0
commit 4dc2ada944

9
fun.go
View file

@ -329,7 +329,11 @@ func memetize(honk *Honk) {
var re_quickmention = regexp.MustCompile("(^| )@[[:alnum:]]+ ") var re_quickmention = regexp.MustCompile("(^| )@[[:alnum:]]+ ")
func quickrename(s string, userid int64) string { func quickrename(s string, userid int64) string {
return re_quickmention.ReplaceAllStringFunc(s, func(m string) string { nonstop := true
for nonstop {
nonstop = false
s = re_quickmention.ReplaceAllStringFunc(s, func(m string) string {
log.Printf("m: %s", m)
prefix := "" prefix := ""
if m[0] == ' ' { if m[0] == ' ' {
prefix = " " prefix = " "
@ -345,11 +349,14 @@ func quickrename(s string, userid int64) string {
if err == nil { if err == nil {
_, name := handles(xid) _, name := handles(xid)
if name != "" { if name != "" {
nonstop = true
m = name m = name
} }
} }
return prefix + m + " " return prefix + m + " "
}) })
}
return s
} }
func mentionize(s string) string { func mentionize(s string) string {