From 2a06f69aa0cae10818e48175cf38c1b5581af4f0 Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Mon, 15 Apr 2019 18:03:36 -0400 Subject: [PATCH] can use prepend here --- honk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/honk.go b/honk.go index db79a31..8873440 100644 --- a/honk.go +++ b/honk.go @@ -718,7 +718,7 @@ func savehonk(w http.ResponseWriter, r *http.Request) { if noise[0] == '@' { honk.Audience = append(grapevine(noise), thewholeworld) } else { - honk.Audience = append([]string{thewholeworld}, grapevine(noise)...) + honk.Audience = prepend(thewholeworld, grapevine(noise)) } if rid != "" { xonk := getxonk("", rid)