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)
|
_, h.Oondle = handles(h.Oonker)
|
||||||
}
|
}
|
||||||
zap := make(map[*Donk]bool)
|
zap := make(map[*Donk]bool)
|
||||||
h.Precis = unpucker(h.Precis)
|
h.Precis = demoji(h.Precis)
|
||||||
h.Noise = unpucker(h.Noise)
|
h.Noise = demoji(h.Noise)
|
||||||
h.Open = "open"
|
h.Open = "open"
|
||||||
if userid == -1 {
|
if userid == -1 {
|
||||||
if h.Precis != "" {
|
if h.Precis != "" {
|
||||||
|
|
|
@ -99,6 +99,10 @@ func unpucker(s string) string {
|
||||||
}
|
}
|
||||||
s = re_alltheshitz.ReplaceAllStringFunc(s, fixer)
|
s = re_alltheshitz.ReplaceAllStringFunc(s, fixer)
|
||||||
|
|
||||||
|
return demoji(s)
|
||||||
|
}
|
||||||
|
|
||||||
|
func demoji(s string) string {
|
||||||
s = re_moredumb.ReplaceAllString(s, ".")
|
s = re_moredumb.ReplaceAllString(s, ".")
|
||||||
|
|
||||||
zw := false
|
zw := false
|
||||||
|
|
Loading…
Reference in New Issue