From 368e2ba61bbfb26cefae0448e8721a8072570733 Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Tue, 23 Jul 2019 11:41:49 -0700 Subject: [PATCH] Fix map iteration bug --- networks/tor/BaseOnionService.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networks/tor/BaseOnionService.go b/networks/tor/BaseOnionService.go index 7882713..0e34442 100644 --- a/networks/tor/BaseOnionService.go +++ b/networks/tor/BaseOnionService.go @@ -141,6 +141,6 @@ func (s *BaseOnionService) Shutdown() { s.connections.Range(func(key, value interface{}) bool { connection := value.(*tapir.Connection) connection.Close() - return false + return true }) }