let's try without the unicrud translation
This commit is contained in:
parent
df94bdb4ed
commit
cad9d2a299
4
fun.go
4
fun.go
|
@ -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…
Reference in New Issue