fix memes

This commit is contained in:
Ted Unangst 2019-09-18 14:02:49 -04:00
parent 2584f31e17
commit d62486db27
2 changed files with 3 additions and 2 deletions

View File

@ -844,6 +844,7 @@ func jonkjonk(user *WhatAbout, h *Honk) (junk.Junk, junk.Junk) {
jo["directMessage"] = true
}
translate(h)
h.Noise = re_memes.ReplaceAllString(h.Noise, "")
jo["summary"] = h.Precis
jo["content"] = ontologize(mentionize(h.Noise))
if strings.HasPrefix(h.Precis, "DZ:") {

4
fun.go
View File

@ -45,6 +45,7 @@ func reverbolate(userid int64, honks []*Honk) {
h.Style += " limited"
}
translate(h)
h.Noise = re_memes.ReplaceAllString(h.Noise, "")
if h.Whofore == 2 || h.Whofore == 3 {
h.URL = h.XID
if h.What != "bonked" {
@ -121,7 +122,6 @@ func translate(honk *Honk) {
noise = strings.TrimSpace(noise)
noise = quickrename(noise, honk.UserID)
noise = obfusbreak(noise)
noise = re_memes.ReplaceAllString(noise, "")
honk.Noise = noise
honk.Onts = oneofakind(ontologies(honk.Noise))
@ -277,7 +277,7 @@ func memetize(honk *Honk) {
fd.Close()
url := fmt.Sprintf("https://%s/meme/%s", serverName, name)
res, err := stmtSaveFile.Exec("", name, url, ct, 0, "")
res, err := stmtSaveFile.Exec("", name, name, url, ct, 0, "")
if err != nil {
log.Printf("error saving meme: %s", err)
return x