can simplify the reverb logic some

This commit is contained in:
Ted Unangst 2019-12-01 12:34:08 -05:00
parent d164471a92
commit d5d943b203
1 changed files with 16 additions and 21 deletions

9
fun.go
View File

@ -63,19 +63,15 @@ func reverbolate(userid int64, honks []*Honk) {
}
translate(h, false)
local := false
if (h.Whofore == 2 || h.Whofore == 3) || h.What != "bonked" {
if (h.Whofore == 2 || h.Whofore == 3) && h.What != "bonked" {
local = true
}
if h.Whofore == 2 || h.Whofore == 3 {
h.URL = h.XID
if h.What != "bonked" {
if local {
h.Noise = re_memes.ReplaceAllString(h.Noise, "")
h.Noise = mentionize(h.Noise)
h.Noise = ontologize(h.Noise)
}
h.Username, h.Handle = handles(h.Honker)
} else {
_, h.Handle = handles(h.Honker)
short := shortname(userid, h.Honker)
if short != "" {
h.Username = short
@ -88,7 +84,6 @@ func reverbolate(userid int64, honks []*Honk) {
if h.URL == "" {
h.URL = h.XID
}
}
if h.Oonker != "" {
_, h.Oondle = handles(h.Oonker)
}