apply unicode filtering to summary too

This commit is contained in:
Ted Unangst 2019-08-08 12:37:05 -04:00
parent f74d7ce92d
commit c91fd71e1e
1 changed files with 1 additions and 0 deletions

1
fun.go
View File

@ -74,6 +74,7 @@ func reverbolate(userid int64, honks []*Honk) {
} else if h.Precis == "unspecified horror" { } else if h.Precis == "unspecified horror" {
h.Precis = "" h.Precis = ""
} }
h.Precis = unpucker(h.Precis)
h.HTML, _ = filt.String(h.Noise) h.HTML, _ = filt.String(h.Noise)
emuxifier := func(e string) string { emuxifier := func(e string) string {
for _, d := range h.Donks { for _, d := range h.Donks {