We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 787d256 commit c02220dCopy full SHA for c02220d
src/client.js
@@ -553,7 +553,7 @@ IrcClient.prototype.processNextWhoQueue = function() {
553
* Explicitely start a channel list, avoiding potential issues with broken IRC servers not sending RPL_LISTSTART
554
*/
555
IrcClient.prototype.list = function(/* paramN */) {
556
- var args = Array.prototype.slice(arguments, 0);
+ var args = Array.prototype.slice.call(arguments);
557
this.command_handler.cache('chanlist').channels = [];
558
args.unshift('LIST');
559
this.raw(args);
0 commit comments