all repos — honk @ 5f05bd2a3f027a410dfa5ccc49ad1a31c759fbfa

my fork of honk

slightly simpler
Ted Unangst tedu@tedunangst.com
Wed, 16 Oct 2019 02:48:33 -0400
commit

5f05bd2a3f027a410dfa5ccc49ad1a31c759fbfa

parent

695fc222da43b1e459295b5f62e4c73b5c5329ad

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

jump to
M activity.goactivity.go

@@ -129,8 +129,7 @@ inflight, ok := flightdeck[url]

if ok { log.Printf("awaiting result for %s", url) c := make(chan JunkError) - inflight = append(inflight, c) - flightdeck[url] = inflight + flightdeck[url] = append(inflight, c) decklock.Unlock() je := <-c close(c)