all repos — honk @ 6434c022f94bf31e22f5a4bbcce0427dacaffdd6

my fork of honk

don't index into empty string
Ted Unangst tedu@tedunangst.com
Sat, 04 May 2019 17:47:17 -0400
commit

6434c022f94bf31e22f5a4bbcce0427dacaffdd6

parent

d27b5e87a29c2f14539c1668da9c62d9ea7fc7ed

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

jump to
M honk.gohonk.go

@@ -845,7 +845,7 @@ What: "honk",

XID: xid, Date: dt, } - if noise[0] == '@' { + if noise != "" && noise[0] == '@' { honk.Audience = append(grapevine(noise), thewholeworld) } else { honk.Audience = prepend(thewholeworld, grapevine(noise))