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 ba10140 commit 4ed9d28Copy full SHA for 4ed9d28
src/commands/handlers/user.js
@@ -272,7 +272,10 @@ const handlers = {
272
RPL_WHOISCERTFP: function(command, handler) {
273
const cache_key = command.params[1].toLowerCase();
274
const cache = handler.cache('whois.' + cache_key);
275
- cache.certfp = command.params[command.params.length - 1];
+ const certfp = command.params[command.params.length - 1];
276
+ cache.certfp = cache.certfp || certfp;
277
+ cache.certfps = cache.certfps || [];
278
+ cache.certfps.push(certfp);
279
},
280
281
RPL_WHOISACCOUNT: function(command, handler) {
0 commit comments