From 0429d5653438550838651824180e467af74a7615 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Sun, 26 Mar 2017 15:15:29 -0700 Subject: [PATCH] http: fix response for wallet join (no wallet auth). --- lib/wallet/http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet/http.js b/lib/wallet/http.js index b9b8ec05..6951b85d 100644 --- a/lib/wallet/http.js +++ b/lib/wallet/http.js @@ -926,7 +926,7 @@ HTTPServer.prototype.handleAuth = function handleAuth(socket) { if (!self.options.walletAuth) { socket.join(channel); - return; + return null; } if (!token)