diff --git a/tor/controller.go b/tor/controller.go index d806016eb..a5628dc10 100644 --- a/tor/controller.go +++ b/tor/controller.go @@ -149,7 +149,7 @@ func parseTorReply(reply string) map[string]string { // "KEY=VALUE". If the parameter doesn't contain "=", then we // can assume it does not provide any other relevant information // already known. - keyValue := strings.Split(content, "=") + keyValue := strings.SplitN(content, "=", 2) if len(keyValue) != 2 { continue }