all repos — honk @ 85aa13c31a3299ecf4d046b2a0475ba5176057f5

my fork of honk

don't crash if xonk not found during reply
Ted Unangst tedu@tedunangst.com
Thu, 11 Apr 2019 10:30:53 -0400
commit

85aa13c31a3299ecf4d046b2a0475ba5176057f5

parent

101458d4f414e511c72466ee0ebef4491da477e1

1 files changed, 3 insertions(+), 1 deletions(-)

jump to
M honk.gohonk.go

@@ -868,7 +868,9 @@ honk.Audience = append([]string{thewholeworld}, grapevine(noise)...)

} if rid != "" { xonk := getxonk("", rid) - honk.Audience = append(honk.Audience, xonk.Audience...) + if xonk != nil { + honk.Audience = append(honk.Audience, xonk.Audience...) + } } honk.Audience = oneofakind(honk.Audience) noise = obfusbreak(noise)