From d542796944eb4cbd5af3a6fe264e15830313276c Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Tue, 16 Apr 2019 20:22:16 -0400 Subject: [PATCH] i think we're ready to try delivery in parallel --- activity.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activity.go b/activity.go index 3aa889d..0d7ba4f 100644 --- a/activity.go +++ b/activity.go @@ -645,7 +645,7 @@ func honkworldwide(user *WhatAbout, honk *Honk) { } } for a := range rcpts { - deliverate(0, user.Name, a, msg) + go deliverate(0, user.Name, a, msg) } }