From 869e978a99c22c5e4276e1a60f55956d0011dc16 Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Tue, 30 Jan 2018 11:14:17 +0200 Subject: [PATCH] Fix #1959: Do not block /join command from being sent --- client/js/utils.js | 1 - 1 file changed, 1 deletion(-) diff --git a/client/js/utils.js b/client/js/utils.js index 239ef133..90bafd2a 100644 --- a/client/js/utils.js +++ b/client/js/utils.js @@ -70,7 +70,6 @@ function join(args) { const chan = findCurrentNetworkChan(channel); if (chan.length) { chan.click(); - return true; } } }