Merge pull request #2013 from thelounge/xpaw/fix-1959

Fix #1959: Do not block /join command from being sent
This commit is contained in:
Pavel Djundik 2018-02-01 10:08:22 +02:00 committed by GitHub
commit 1904e9b0ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -70,7 +70,6 @@ function join(args) {
const chan = findCurrentNetworkChan(channel); const chan = findCurrentNetworkChan(channel);
if (chan.length) { if (chan.length) {
chan.click(); chan.click();
return true;
} }
} }
} }