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 89aee18 commit 7e9f8ddCopy full SHA for 7e9f8dd
src/commands/handlers/user.js
@@ -262,7 +262,8 @@ var handlers = {
262
RPL_WHOISSPECIAL: function(command) {
263
var cache_key = command.params[1].toLowerCase();
264
var cache = this.cache('whois.' + cache_key);
265
- cache.special = command.params[command.params.length - 1];
+ cache.special = cache.special || [];
266
+ cache.special.push(command.params[command.params.length - 1]);
267
},
268
269
RPL_WHOISCOUNTRY: function(command) {
0 commit comments