let's try without the unicrud translation

master
Ted Unangst 5 years ago
parent df94bdb4ed
commit cad9d2a299

@ -67,8 +67,8 @@ func reverbolate(userid int64, honks []*Honk) {
_, h.Oondle = handles(h.Oonker)
}
zap := make(map[*Donk]bool)
h.Precis = unpucker(h.Precis)
h.Noise = unpucker(h.Noise)
h.Precis = demoji(h.Precis)
h.Noise = demoji(h.Noise)
h.Open = "open"
if userid == -1 {
if h.Precis != "" {

@ -99,6 +99,10 @@ func unpucker(s string) string {
}
s = re_alltheshitz.ReplaceAllStringFunc(s, fixer)
return demoji(s)
}
func demoji(s string) string {
s = re_moredumb.ReplaceAllString(s, ".")
zw := false

Loading…
Cancel
Save